asp.net – 问题检查后面的代码中的单选按钮

前端之家收集整理的这篇文章主要介绍了asp.net – 问题检查后面的代码中的单选按钮前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个简单的ASP.NET表单,带有DropDownList和两个RadioButtons(两者都共享相同的GroupName).

在DropDownList的SelectedIndexChanged事件中,我在两个RadioButtons上设置Checked = true.

它设置第二个RadioButton很好,但它不会检查第一个.我究竟做错了什么?

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="WebApplication3._Default" %>
  2.  
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml">
  5. <body>
  6. <form id="form1" runat="server">
  7. <asp:DropDownList runat="server" AutoPostBack="true" OnSelectedIndexChanged="ddl_Changed"
  8. ID="ddl">
  9. <asp:ListItem Text="Foo" />
  10. <asp:ListItem Text="Bar" />
  11. </asp:DropDownList>
  12. <asp:RadioButton runat="server" ID="rb1" Text="Foo" GroupName="foobar" />
  13. <asp:RadioButton runat="server" ID="rb2" Text="Bar" GroupName="foobar" />
  14. </form>
  15. </body>
  16. </html>
  17.  
  18. protected void ddl_Changed(object sender,EventArgs e)
  19. {
  20. if (ddl.SelectedIndex == 0)
  21. rb1.Checked = true; // <- Doesn't actually work
  22. else
  23. rb2.Checked = true;
  24. }

解决方法

它失败了,因为它试图将它们都设置为选中,这对于组中的无线电按钮是不可能的.

最好的解决方案是使用RadioButtonList:

  1. <asp:RadioButtonList ID="rblTest" runat="server">
  2. <asp:ListItem Text="Foo"></asp:ListItem>
  3. <asp:ListItem Text="Bar"></asp:ListItem>
  4. </asp:RadioButtonList>

然后像这样设置所选项目:

  1. protected void ddl_Changed(object sender,EventArgs e)
  2. {
  3. rblTest.ClearSelection();
  4. rblTest.SelectedIndex = ddl.SelectedIndex;
  5. }

猜你在找的asp.Net相关文章