RadioButtonList FindByValue 问题

RadioButtonList FindByValue Problems

我似乎无法在单选按钮列表中查找特定值。

如果我有这样的单选按钮列表;

[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")

问题是我得到 "Operator = is not defined for types ListItem and integer",我是否正确使用它。

您需要像

一样更改您的代码
Dim v as Integer = 3
if rdoTheTest.Items.FindByValue(v) IsNot Nothing Then Msgbox("I Found you")