DateTime收敛到目前在Dotnet MVC中

时间:2015-05-25 09:43:27

标签: asp.net-mvc-4

我需要在模型中将DateTime字段转换为Date 我的观点是这个

<input class="input_width02 text-box single-line" id="PrdExpiry_@row" name="PrdExpiry[@row]" type="date" autocomplete="off" onchange="productExpDate(@row)" style="width:110px" value="@Model.itemDetails[i].Prd_ExpDateFormat">

我的模特是

 public Nullable<System.DateTime> Prd_ExpDate { get; set; }

1 个答案:

答案 0 :(得分:0)

Foe nullable属性,您需要先检查值。

if(Prd_ExpDate.HasValue)
{
    var shortDate = Prd_ExpDate.Value.ToShortDateString();
}