5 lines
182 B
Plaintext
5 lines
182 B
Plaintext
@model DateTime
|
|
@{
|
|
Layout = "~/Views/Shared/EditorTemplates/_FieldLayout.cshtml";
|
|
}
|
|
@Html.TextBox("", (Model != DateTime.MinValue ? Model.ToShortDateString() : string.Empty )) |