ASP.NET MVC HTML helper methods for new HTML5 input types
Just a heads up that many of these are now incorporated into MVC4 by using the DataType attribute. As of this work item you can use: public class MyModel { // Becomes <input type=”number” … > public int ID { get; set; } // Becomes <input type=”url” … > [DataType(DataType.Url)] public string WebSite { get; … Read more