首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

RadioButton控件解决思路

2013-10-03 
RadioButton控件比如现在有两个RadioButton控件id分别为r1,r2,并且有个各自的Text属性值,Checked都为false

RadioButton控件
比如现在有两个RadioButton控件id分别为r1,r2,并且有个各自的Text属性值,Checked都为false。如何实现点击r1,r2.Text立即变化为指定的其他值?
[解决办法]


前台:   <asp:RadioButton ID="RadioButton1" runat="server" AutoPostBack="True" 
            oncheckedchanged="RadioButton1_CheckedChanged" />//注意设置AutoPostBack="True" 
        <asp:RadioButton ID="RadioButton2" runat="server" />
后台: 
protected void RadioButton1_CheckedChanged(object sender, EventArgs e)
    {
        RadioButton2.Text = "点击变化的值!";
    }

[解决办法]
重新新建一个项目试。以上代码是可行的。

热点排行