我使用DataSet
列Ref
,我正在尝试将此列的值绑定到下拉列表
DropDownRef.DataSource = From r In liste.Tables(0).Columns("Ref") Select r
DropDownRef.DataBind()
但它不起作用:(
答案 0 :(得分:2)
您正在使用DataColumn
作为数据源。您需要使用数据。
DropDownRef.DataSource = From r In liste.Tables(0).AsEnumerable()
Select r.Field(Of String)("Ref")