您好我有數據庫日期被存儲在以下格式:2014年4月2日00:00:00如何把字符串格式的查詢字符串
現在我需要通過消除零檢索此日期使用以下格式的字符串格式: 04/02/2014。
下面是我使用的檢索日期我的asp.net mvc的代碼:
if (scheduleresults.schedule_StartDate != null && scheduleresults.schedule_starttime != null)
{
sbs.Append("<td>" + scheduleresults.schedule_StartDate + scheduleresults.schedule_starttime + "</td>");
}
在上面的代碼中,開始日期中包含日期。
我如何把上述代碼的字符串格式?