0
我有一個場景,我想在下拉列表中添加重複鍵。下面是exsiting代碼 -在Asp.net下拉列表中添加重複鍵
currentVersionDDL.DataSource = DDLList.ToList();
currentVersionDDL.DataTextField = "Value";
currentVersionDDL.DataValueField = "Key";
其中DDLList是字典
Dictionary<int, string> DDLList = new Dictionary<int, string>();
按照新的要求,我將不得不在下拉菜單中添加重複的關鍵,有沒有辦法做到這一點沒有太多改變現有碼。請建議。我試着用Lookup
但它不是在裝修。
你爲什麼想要這只是出於興趣? – Milney