2011-04-26 83 views
1

如何爲代碼中的DropDownList列表項添加Value參數(使用C#/ ASP.NET/SharePoint)?添加Value參數

+0

如果有任何的回答可以幫到你,請選擇一個答案或給予好評。 – 2011-05-02 13:55:55

回答

0
DropDownList1.Items.Add(new ListItem("item 1", "Item 1 Value")); 

請參閱here

0

值在列表項類的屬性,你可以將其設置爲任何其他財產:

item.Value = "your value";