我試圖使用從我的Web窗體上的下拉列表中選擇的值創建到期日期,但是我無法連接Month變量值和Year變量值。我收到錯誤:錯誤操作符'&'未爲'String'和System.Web.UI.WebControls.ListItem'類型定義。我也嘗試過使用「+」,但得到相同的錯誤。連接變量
這裏是我的代碼:
Dim Month = monthDropDownList.SelectedValue
Dim Year = yearDropDownList.SelectedItem
Dim MonthYear = Month & Year
Dim ExpirationDate As Date = MonthYear
任何幫助將不勝感激。
yearDropDownList.SelectedItem.ToString() – Steve
是固定的錯誤。誰知道這很簡單。非常感謝您的幫助。 – Stizz1e