gpt4 book ai didi

asp.net - 捕获错误 : is not in list

转载 作者:行者123 更新时间:2023-12-02 16:04:52 24 4
gpt4 key购买 nike

如何捕获此错误?

DropdownList1.SelectedValue = strText;  

这是错误:

Selected Value of DropdownList1 is invalid because it does not appear in the list of items.

我可以用 dropdownlist1 中存在的类似 strText 的内容来捕获它吗?

最佳答案

您可以使用DropDownList.Items.FindByValue

if( ItemCollection.FindByValue(strText) != null)
{
DropdownList1.SelectedValue = strText;
}

关于asp.net - 捕获错误 : is not in list,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15495072/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com