我将下拉列表绑定到数据源,并在代码隐藏中定义了文本和值列。
DropDownList1.DataTextField = "Product_Name"
DropDownList1.DataValueField = "Product_ID"
它工作正常。但我想再分配一列给DataTextField
, Order_Date
。我尝试了这个机会:
DropDownList1.DataTextField = "Product_Name"+"Order_Date"
DropDownList1.DataValueField = "Product_ID"
但它没有用。是否可以显示多个值DataTextField
?