我需要在我的頁面文本框中顯示數據庫中的日期值。在.NET中顯示SQL日期
Dim dbl As New vtisDAL.vtisDALDataContext
Dim dsGetFacultydetails = From f1 In dbl.usp_GetFacultyDetails(Val(lblFacultyID.Text)).AsQueryable
For Each entry In dsGetFacultydetails
txtApprDate.Text = Convert.ToDateTime(entry.ApprovalDate).Date
Next
當表中的列是空的,該文本框具有值00:00:00。如何顯示該框爲空?
Will txtApprDate.Text =「00:00:00:」;解決我的問題?那是將文本框顯示爲EMPTY? – MusicLovingIndianGirl
如果'entry.ApprovalDate'爲null,它會給出一個錯誤,因爲你已經使用了'.ToString()' –
抱歉,我只是想念你的問題,現在我編輯了我的答案@Aishvarya –