我的时间字符串有问题..我想格式化它,以便它显示更整洁的设计..谁能帮我解决这个问题
这是我的代码:
ViewBag.startTime =
(from a in test
where a.ID == clientCustomerPositionShiftnfo.ID
select new{ a.StartTime})
.AsEnumerable()
.Select(a => a.StartTime != "Anytime"
? Convert.ToDateTime(a.StartTime).ToString("HH:mm:ss")
: a.StartTime.Trim());
在我看来:
<input type="text" id="txtStartTime" name="txtStartTime" class="inputLong"
value="@ViewBag.startTime" disabled="disabled"/>