Register |

Author Code Resources

Find developer resources,code sample,articles,blogs,project sample for creating application in various technology.
Programming Languages
Tech News and Resources

Recent Articles,blogs and code snippets


Break and Continue in JavaScript

  If you want to skip some iteration in loop than you can use Continue statement.When you use Continue statement in a loop,it break the current loop and continue with the next value.

How to break a loop in JavaScript

  The break statement will break the loop and continue executing the code that follows after the loop.

Comments in JavaScript

  Mostly Comments are used to explain the JavaScript code so that end user can understand your code and easy to readable. There are two types of comment we can use in java script

Different methods for reading text file in C#

following are the different methods which we can use to read text file in C#:

While loop in JavaScript

  If you want to run same code many times, you can use concept of looping in JavaScript. In JavaScript, we use for and while loops While loop in JavaScript executes code while a condition is true.

Simple example of For loop in JavaScript

  If you want to run same code many times, you can use concept of looping in JavaScript. In JavaScript, there following different kind of loops:

How to validate email address in JavaScript

  Regular expressions are a right way to validate text fields such as email addresses, phone numbers, names, age, date and other input information.

Abstract Class with simple example in C# and VB.Net

  An abstract class contains abstract members which define what a subclass should contain. These abstract members only declare that a member of a particular type is required; it does not implement the member. Implementation of abstract members takes place within the derived class.

How to validate phone number in JavaScript

  Regular expressions are a right way to validate text fields such as phone numbers, names, addresses, age, date and other input information. You can use them to constrain input, apply formatting rules, and check lengths.

Code sample for deleting all contacts in outlook using C#

  The following code sample show how to remove or delete all contacts in outlook using c# programming language. Before using this code sample you need to add reference of ‘Microsoft.Office.Interop.Outlook’ library.

More inside AuthorCode