DropDownList绑定选择数据报错提示异常解决方案
程序员文章站
2024-03-04 13:23:23
抛出的异常信息:异常详细信息: system.argumentoutofrangeexception: “ddltotalcostdiscount ”有一个无效 selec...
抛出的异常信息:异常详细信息:
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.
如果哪里有不正确的地方,欢迎批评指正,共同进步。
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.
如果哪里有不正确的地方,欢迎批评指正,共同进步。