asp.net radiobutton 获取值

题目如下:机构标志0有门户1无门户下面是两个radiobutton<asp:RadioButtonID="RadioButton1"runat="server"Text=... 题目如下:
机构标志
0 有门户
1 无门户
下面是两个 radiobutton
<asp:RadioButton ID="RadioButton1" runat="server" Text="用门户"
GroupName="OrganizationFlag" />
<asp:RadioButton ID="RadioButton2" runat="server" Text="无门户"
GroupName="OrganizationFlag" />
怎样定义一个变量用于获取选中的值,当选中“用门户”的radiobutton时为变量赋值0,当选中“无门户”的radiobutton时为变量赋值1?
请高手赐教!!!
展开
 我来答
aino77
2010-04-30 · TA获得超过920个赞
知道小有建树答主
回答量:378
采纳率:0%
帮助的人:284万
展开全部
Protected void Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
{
RadioButton1.AutoPostBack = True; //让RadioButton响应服务端事件.
RadioButton2.AutoPostBack = True;
}

Protected void RadioButton1_CheckedChanged(ByVal sender As Object, ByVal e As System.EventArgs)
{
变量 = 0;
}

Protected void RadioButton2_CheckedChanged(ByVal sender As Object, ByVal e As System.EventArgs)
{
变量 = 1;
}
youjumpsoijump
2010-04-30 · 超过17用户采纳过TA的回答
知道答主
回答量:60
采纳率:0%
帮助的人:61.6万
展开全部
asp.net 单选请用
<asp:RadioButtonList ID="RadioButtonList1" runat="server">
<asp:ListItem Value="0">用门户</asp:ListItem>
<asp:ListItem Value="1">无门户</asp:ListItem>
</asp:RadioButtonList>

this.RadioButtonList1.SelectedItem.Text =="用门户";
int i =0;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友88ca838
2010-04-30 · TA获得超过503个赞
知道小有建树答主
回答量:767
采纳率:0%
帮助的人:491万
展开全部
建议用RadioButtonList控件,然后,在Item中添加项(包括键值对 Text,Value)
然后获取值,直接用RadioButtonList.SelectedValue
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式