我有一個空的列表框的.aspx頁面ASP.NET:列表框的數據源和數據綁定
lstbx_confiredLevel1List
我生成兩個列表編程
List<String> l1ListText = new List<string>(); //holds the text
List<String> l1ListValue = new List<string>();//holds the value linked to the text
我想加載上的.aspx lstbx_confiredLevel1List
列表框中具有上述值和文本的頁面。所以,我做以下操作:
lstbx_confiredLevel1List.DataSource = l1ListText;
lstbx_confiredLevel1List.DataTextField = l1ListText.ToString();
lstbx_confiredLevel1List.DataValueField = l1ListValue.ToString();
lstbx_confiredLevel1List.DataBind();
,但它不與l1ListText
和l1ListValue
加載lstbx_confiredLevel1List
。
任何想法?
感謝,使用C#男,這讓我對編譯器錯誤字典,我用什麼庫去除錯誤 – user1889838
@ user1889838:'using System.Collections.Generic;'並且對於ToDictionary的第二種方法,您還需要'使用System.Linq;'。 –