我的數據庫存儲的時間在SQL數據類型的時間。我在vb.net中使用mvc 3並試圖讓時間以標準格式顯示(AM/PM)。但是,我不斷收到一個錯誤「無法投射'System.TimeSpan'類型的對象來鍵入'System.IConvertible'。」顯示SQL數據類型時間作爲標準時間
這是我使用
<h4>Tuesday</h4>
<ul>
@For Each c As ClassSchedule In ViewBag.Tuesday
@<li>@c.timeStart - @c.timeEnd - @c.name</li>
Next
</ul>
任何幫助表示讚賞代碼。
究竟什麼是 'ClassSchedule'? –
見http://www.codeproject.com/Questions/193507/How-to-operate-arithmetic-operation-on-dates –
課程表是一個對象:ID,timestart,timeend,名 –