asp.net mvc - htmlattributes - Plantilla MVC 3 Editor con DateTime
htmlattributes mvc (1)
Quiero cambiar este código de MVC2
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<System.DateTime?>" %>
<%=Html.TextBox("", (Model.HasValue ? Model.Value.ToShortDateString() : string.Empty), new { @class = "datePicker" }) %>
Para MVC 3 utilizando Razor.
Puedes encontrar el post completo de lo que quiero hacer here
@model DateTime?
@Html.TextBox("", (Model.HasValue ? Model.Value.ToShortDateString() : string.Empty), new { @class = "datePicker" })