DropDownList繫結選擇資料報錯問題

2022-01-19 02:13:40 字數 483 閱讀 7378

丟擲的異常資訊:異常詳細資訊:

system.argumentoutofrangeexception: 「ddltotalcostdiscount 」有乙個無效 selectedvalue,因為它不在專案列表中。

原先給dropdownlist這樣賦值:

this.ddltotalcostdiscount.selectedvalue = obj.totalcostdiscount.tostring();

改成這樣賦值:

ddltotalcostdiscount.selectedindex = ddltotalcostdiscount.items.indexof(ddltotalcostdiscount.items.findbyvalue(obj.totalcostdiscount.tostring()));

​就是如果通過findbyvalue沒有找到指定項則為null,而items.indexof(null)會返回-1.

dropdownlist資料繫結

在web.config配置檔案連線資料庫 新建乙個 sqlhelp 類 string scon system.configuration.configurationmanager.connectionstrings scon connectionstring 執行查詢的方法返回的是乙個dataset...

DropDownList繫結系統顏色

昨天晚上看到 http www.cnblogs.com overred archive 2006 03 24 357833.html的效果,感覺挺好看的.我結合列舉做了一下.可以顯示系統的全部顏色.看看 繫結字型 26system.drawing.text.installedfontcollecti...

DropDownList的繫結方法

方法1 如果是固定的繫結,則直接在ddl下設定value值和text值即可繫結 方法2 如果是動態繫結,則需要取得名稱和value值後再與ddl繫結 例子 protected void bind string id dictionary dictionary new dictionary 某個類物件...