Let’s begin with the server side first. To add Html5 form I will utilize the ModelMetadata and DataAnnotation features that are available in ASP.NET MVC. The DataAnnotation has several attributes which we can use when generating the input types. Let’s say I have a dummy model which is fully decorated with the DataAnnotation attributes:
public class Html5FormModel
{
[Display(Name = "String", Prompt = "Type a string"), Required]
public string StringProperty { get; set; }
[Display(Name = "Decimal", Prompt = "Type a decimal"), Range(1.0, 100.0), Required]
public decimal? DecimalProperty { get; set; }
[Display(Name = "Date", Prompt = "Type a date"), DataType(DataType.Date), Required]
public DateTime? DateProperty { get; set; }
[Display(Name = "Url", Prompt = "Type an url"), DataType(DataType.Url), Required]
public string UrlProperty { get; set; }
[Display(Name = "Email", Prompt = "Type an email"), DataType(DataType.EmailAddress), Required]
public string EmailProperty { get; set; }
[Display(Name = "Phone number", Prompt = "Type a phone number"), DataType(DataType.PhoneNumber), Required]
public string PhoneProperty { get; set; }
}
Read more: KAZI MANZUR RASHID'S BLOG