Вот одна из возможностей:
public class MyModel
{
[UIHint("MyDateTemplate")]
public DateTime Value { get; set; }
}
и в ~/Views/Home/EditorTemplates/MyDateTemplate.ascx
:
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<DateTime>" %>
<%: Html.TextBox(
string.Empty,
Model.ToString("dd/MM/yyyy"),
new { @class = "foo" }
)%>
и на главном экране:
<%: Html.EditorForModel()
или еще один:
public class MyModel
{
[DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "{0:dd/MM/yyyy}")]
public DateTime Value { get; set; }
}
и на вашем главном экране:
<div class="foo">
<%: Html.EditorFor(x => x.Value) %>
</div>
и в вашем css:
.foo input {
/* define some rule here */
}