ASP.NET中服务器控件RadioButtonList 值改变为啥不触发SelectedIndexChanged

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ASP.NET中服务器控件RadioButtonList 值改变为啥不触发SelectedIndexChanged相关的知识,希望对你有一定的参考价值。

其他控件,如TextBox,DropDownList改变后都可以触发对应的changed事件,而且AutoPostBack = true设置了,但是RadioButtonList 我做的是男女性别选择,改变性别值后,还是不触发,怎么回事,谢谢。

以下是我的测试,没问题啊,我建议你重新建立一个新的ASPX页面测试下,看看有没有问题,如果运行正常那说明你那个页面的设置有问题,仔细检查一下。特别是前台事件绑定的方法名称和后台的方法名称是否一样。
前台:
<asp:RadioButtonList ID="RadioButtonList1" runat="server" AutoPostBack="True"
ForeColor="#FF3300"
onselectedindexchanged="RadioButtonList1_SelectedIndexChanged"
RepeatDirection="Horizontal">
<asp:ListItem Selected="True" Value="man">man</asp:ListItem>
<asp:ListItem Value="woman">woman</asp:ListItem>
</asp:RadioButtonList>
后台:
protected void RadioButtonList1_SelectedIndexChanged(object sender, EventArgs e)

string str = RadioButtonList1.SelectedValue;
参考技术A 你页面的标头能发我看下嘛 参考技术B 贴代码 参考技术C 设置组了么?追问

是RadioButtonList ,不是RadioButton,没有设置组的属性啊,本来就是一组

追答

喔,我比较菜,不太懂

以上是关于ASP.NET中服务器控件RadioButtonList 值改变为啥不触发SelectedIndexChanged的主要内容,如果未能解决你的问题,请参考以下文章

在 ASP.net 中上传文件而不使用 FileUpload 服务器控件

总是使用 ASP.NET 服务器控件的子类?如果不是,为啥不呢?

将图像控件转换为字节数组 Asp.Net

ASP.Net中上传文件的几种方法

asp.net怎么用上传控件,上传图片!

ASP .NET 混乱 - 服务器控件