2

我在 vb.net 中有以下内容

 <asp:RadioButtonList ID="rbEdit5" runat="server"  RepeatDirection="horizontal" >
  <asp:ListItem Value="1" >Yes</asp:ListItem>
  <asp:ListItem Value="0" >No</asp:ListItem>
 </asp:RadioButtonList>

我需要以编程方式选择 2 个列表项之一。如何在 vb.net 中以编程方式选择上面说“是”

4

3 回答 3

2

这应该有效:

rbEditTop25.Items.FindByText("Yes").Selected = True
于 2012-04-25T20:39:08.937 回答
0
For Each li As ListItem In rbEditTop25.Items
     If li.Text= "Yes" Then
       li.Selected = True
     End If
Next
于 2012-04-25T20:32:39.730 回答
0
rbEditTop25.SelectedValue = "1"

应该做的伎俩!

于 2012-04-25T20:36:28.130 回答