在RadioButtonList选中固定项触发事件

我有一个RadioButtonList项为“0”“1”我想当我选“1”时能即时显示另一个RadioButtonList供进一步选择,而选“0”则无次选项第二个RadioB... 我有一个RadioButtonList 项为“0”“1”
我想当我选“1”时能即时显示另一个RadioButtonList供进一步选择,而选“0”则无次选项
第二个RadioButtonList就在第一个旁边,visible属性为false,当我一选中第一个的“1”时,立刻变成ture显示在旁边
谢谢各位老大不吝赐教
m(__)m
展开
 我来答
百度网友2aa849a
2007-12-26 · 超过44用户采纳过TA的回答
知道小有建树答主
回答量:156
采纳率:0%
帮助的人:0
展开全部
Radio里面的数据Value设置跟下面的SelectedValue相等就行了 像:<asp:ListItem Value="0">0</asp:ListItem>

protected void RadioButtonList1_SelectedIndexChanged(object sender, EventArgs e)
{
if (RadioButtonList1.SelectedValue == "0")
{
RadioButtonList2.Visible = false;
}
if (RadioButtonList1.SelectedValue == "1")
{
RadioButtonList2.Visible = true;
}
}

AutoPostBack设为true
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式