RadioButtonList FindByValue问题

时间:2018-04-26 11:54:32

标签: asp.net vb.net radiobuttonlist

我似乎在单选按钮列表中找到特定值时遇到问题。

所以,如果我有像这样的单选按钮列表;

[ID]  [Value]
 1    Apple
 2    Orange
 3    Pear
 4    Banana

我想使用后面的vb.net代码来查看项目是否存在。所以我以为我能做到这一点;

Dim v as Integer = 3
if rdoTheTest.Items.FindByValue(v) = True Then Msgbox("I Found you")

问题是我得到“运算符=没有为类型ListItem和整数定义”,我是否正确使用它。

1 个答案:

答案 0 :(得分:1)

您需要更改代码,如

Dim v as Integer = 3
if rdoTheTest.Items.FindByValue(v) IsNot Nothing Then Msgbox("I Found you")