Tag: Data Annotations
Date DisplayFormat for Textbox in ASP.NET MVC
If you want to apply date display format to the textbox in ASP.NET MVC , you can achieve this through Data Annotations in the model. Date DisplayFormat for Textbox in ASP.NET MVC Below is a sample sourecode demonstrating the Date DisplayFormat for Textbox in ASP.NET MVC Razor View Model and Data Annotations The above annotations will display the textbox in the specified datetime format .
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#.