How to apply input which has a type email to HTML Helper in Asp.net MVC3 Razor. For example:
Use Dataanotations at Model :
[Required] [DataType(DataType.EmailAddress, ErrorMessage = "Invalid Email Address")] public string EmailAddress { get; set; }