Tag: Validation
jQuery plugin – Validation
The jQuery plugin – Validation is a jQuery plugin that helps the developers to make the client side form validation simple and easy with many option for customization. The jQuery Validation plugin comes with lots of default validation methods like URL validation , email validation etc . Along with the default validation , the plugin also allows the developers to write the custom validations. Know…
Built-in method to validate email address in C#
Are you looking for a built-in method in C# which lets you validate email address. If yes , you can use the EmailAddressAttribute class that is defined in the System.ComponentModel.DataAnnotations namespace to do it. How to validate email address in C# using EmailAddressAttribute class ? Below is a sample code snippet demonstrating the usage of the EmailAddressAttribute class to validate the email address in C#.