ASP.NET 上的 RadioButtonList (VB)

发布于 2024-09-06 03:30:54 字数 174 浏览 10 评论 0原文

我有一个RadioButtonList,其中包含4个单选按钮A、B、C、D

RBQ.Items.Add("A")
RBQ.Items.Add("B")
RBQ.Items.Add("C")
RBQ.Items.Add("D")

如何将选定的值设置为值为“B”的单选按钮?

I have a RadioButtonList which contain 4 radio buttons A,B,C,D

RBQ.Items.Add("A")
RBQ.Items.Add("B")
RBQ.Items.Add("C")
RBQ.Items.Add("D")

How can set the selected value to the radio button who has the value "B"?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

扮仙女 2024-09-13 03:30:54
RBC.Items.FindByValue("B").Selected = True

RBC.SelectedValue = 2

Grz、克里斯。

RBC.Items.FindByValue("B").Selected = True

or

RBC.SelectedValue = 2

Grz, Kris.

俯瞰星空 2024-09-13 03:30:54

在 aspx 页面上:

 <asp:RadioButtonList ID="RadioButtonList1" runat="server">
        <asp:ListItem>A</asp:ListItem>
        <asp:ListItem Selected="True">B</asp:ListItem>
        <asp:ListItem>C</asp:ListItem>
        <asp:ListItem>D</asp:ListItem>
 </asp:RadioButtonList>

在代码隐藏中:

Dim item As New ListItem("A", "A")
Me.RadioButtonList1.Items.Add(item)
item = New ListItem("B", "B")
item.Selected = True
Me.RadioButtonList1.Items.Add(item)
item = New ListItem("C", "C")
Me.RadioButtonList1.Items.Add(item)
item = New ListItem("D", "D")
Me.RadioButtonList1.Items.Add(item)

Me.RadioButtonList1.SelectedValue = "B"

On aspx-Page:

 <asp:RadioButtonList ID="RadioButtonList1" runat="server">
        <asp:ListItem>A</asp:ListItem>
        <asp:ListItem Selected="True">B</asp:ListItem>
        <asp:ListItem>C</asp:ListItem>
        <asp:ListItem>D</asp:ListItem>
 </asp:RadioButtonList>

In Codebehind:

Dim item As New ListItem("A", "A")
Me.RadioButtonList1.Items.Add(item)
item = New ListItem("B", "B")
item.Selected = True
Me.RadioButtonList1.Items.Add(item)
item = New ListItem("C", "C")
Me.RadioButtonList1.Items.Add(item)
item = New ListItem("D", "D")
Me.RadioButtonList1.Items.Add(item)

or

Me.RadioButtonList1.SelectedValue = "B"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文