0
我以前發佈過這個問題,但沒有得到正確的答案 - 這裏是我的代碼再次if條件。.net dropdownlist if condition
Dim provider As CultureInfo = CultureInfo.InvariantCulture
Dim a1 As DateTime = Nothing
If date1.selectedvalue isnot nothing Then
insexp = DateTime.ParseExact(date1.SelectedValue, "MMMM yyyy", provider)
End If
If a1.Month = Today.Month AndAlso a1.Year = Today.Year Then
a1 = Today.Date
End If
date1是aspx頁面中的下拉列表,如果您沒有選擇它,則沒有值。它不是強制性的下拉列表。當我在調試器模式下運行它時,我得到date1 = ""
的值。這就進入瞭如果條件和崩潰。請指點如何使這項IF條件工作