4
Public Function comb1(ByVal SName As String) As DataTable
Dim dt As New DataTable
cmd = New SqlCommand("Select Distinct RName from tb_RS_New", con)
dr2 = cmd.ExecuteReader
While (dr2.Read())
dt.Rows.Add(dr2("RName"))
End While
Return dt
End Function
在加載頁面時,錯誤被拋出的「輸入數組比列在這個表中的號碼再」
什麼錯在我的代碼。
需要幫助