timepan mm /:ss格式正确工作

时间:2016-03-21 13:09:49

标签: .net asp.net-mvc timespan

型号:

[DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = @"{0:mm\:ss}")]
[Column("delay", TypeName = "interval")]
        public TimeSpan Delay{ get; set; }

查看:

 @Html.TextBoxFor(model => model.Delay, @"{0:mm\:ss}", new { @class = "form-control" })

在文本框中,显示格式一切正常,但当我尝试保存时,系统将分钟转换为小时,秒到分钟。我不明白为什么。任何解决方案?

0 个答案:

没有答案