我得到下面的錯誤ASP.Net錯誤 - 無法轉換類型「System.String」的對象鍵入「System.Data.DataTable」
無法轉換類型「System.String」的對象鍵入'System.Data.DataTable'。
這是我使用
代碼昏暗str作爲字符串=的String.Empty
If (Session("Brief") IsNot Nothing) Then
Dim dt As DataTable = Session("Brief")
If (dt.Rows.Count > 0) Then
For Each dr As DataRow In dt.Rows
If (str.Length > 0) Then str += ","
str += dr("talentID").ToString()
Next
End If
End If
Return str
感謝
它的旁邊......但我可以問你爲什麼要在會話中存儲整個數據表,以及你使用了什麼樣的會話狀態? – JonAlb 2011-11-09 14:43:02