asp.net中怎样取得一组radiobutton的选中项的值

我想实现这样的功能:有四个单选按钮, 点击其一 获取它的值,并储存到一个变量中
有没有简单一点的方法,能不能通过一组RadioButton的GroupName取得value呢(不需要写四个方法,太复杂)

第1个回答  2006-08-16
下面是我的测试代码:
Default.aspx.cs的代码如下:

using System;

using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Net;

public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

}
protected void Button1_Click(object sender, EventArgs e)
{

System.Web.HttpCookie hp = new HttpCookie("UserName", this.TextBox1.Text);
System.Web.HttpContext.Current.Response.Cookies.Add(hp);
this.Label1.Text = System.Web.HttpContext.Current.Response.Cookies.Get("UserName").Value;

}

protected void RadioButtonList1_SelectedIndexChanged(object sender, EventArgs e)
{
string xxx = RadioButtonList1.SelectedItem.Value;
Response.Write(xxx);
this.Label1.Text = xxx;
this.TextBox1.Text = xxx;
}
protected void RadioButton1_CheckedChanged(object sender, EventArgs e)
{
string xxx = this.RadioButton1.Text;
this.Label1.Text = xxx;
this.TextBox1.Text = xxx;
}
protected void RadioButton2_CheckedChanged(object sender, EventArgs e)
{
string xxx = this.RadioButton2.Text;
this.Label1.Text = xxx;
this.TextBox1.Text = xxx;
}
protected void RadioButton3_CheckedChanged(object sender, EventArgs e)
{
string xxx = this.RadioButton3.Text;
this.Label1.Text = xxx;
this.TextBox1.Text = xxx;
}
}
Default.aspx的代码如下:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body>
<% Response.Write("你好1"+DateTime.Now); %>

<form id="form1" runat="server">
<div>
<asp:Label ID="Label1" runat="server" Height="92px" Text="Label" Width="308px"></asp:Label>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Button" />
<asp:RadioButtonList ID="RadioButtonList1" runat="server" Height="68px" OnSelectedIndexChanged="RadioButtonList1_SelectedIndexChanged"
Width="54px">
<asp:ListItem>1</asp:ListItem>
<asp:ListItem>2</asp:ListItem>
<asp:ListItem>3</asp:ListItem>
<asp:ListItem>4</asp:ListItem>
</asp:RadioButtonList>
<asp:RadioButton ID="RadioButton1" runat="server" GroupName="test" OnCheckedChanged="RadioButton1_CheckedChanged" Text="1" />
<asp:RadioButton ID="RadioButton2" runat="server" GroupName="test" OnCheckedChanged="RadioButton2_CheckedChanged" Text="2" />
<asp:RadioButton ID="RadioButton3" runat="server" GroupName="test" OnCheckedChanged="RadioButton3_CheckedChanged" Text="3" />
</div>
</form>

</body>
</html>

你可以用javascript实现,我不知道你想要什么样的方法
第2个回答  2006-08-15
是POST实现么?还是用js实现?

ASP.NET如何获取一组radiobutton中被选中的项?
所有radiobutton设置groupname属性,groupname值要相同,设置组可以实现你说的n选1 的情况这是空间自带的属性,至于判断是否被选中,你可以一个一个去判断,也可以在遍历判断,选中radiobutton状态checked=true

asp.net 一个radiobutton组,怎么得到选择的那个值
\/><br \/><asp:RadioButtonID="RadioButton2"runat="server"GroupName="testGroup"Text="RadioButton2"\/><br \/><br \/>\/\/.cs页面:使用Checked属性做判断<br \/>if(RadioButton1.Checked)<br \/>{<br \/>\/\/选择RadioButton1<br \/>}<br \/>else<br \/>{<br \/>\/\/选择RadioButton1<br \/>...

asp.net c# 自动生成的radio如何判断是否被选中?
你添加的单选框是直接用HTML代码添加的,不是 ASP.NET 中的控件,当然找不到,也不能在后台代码中访问。你需要做的是在代码中动态添加 RadioButton 控件,而不是 Response.Write()比如,我在 Pannel控件 pannel1 中动态添加一个 RadioButton,可以这样:RadioButton r = new RadioButton();r.Text =...

asp.net中repeater控件里使用一组radiobutton为什么设置了相同groupname...
因为GroupName属性生成之后不是相同的所以可以同时选中 window.onload = function() { $("input[type='Radio']").attr("name", "name"); } 这段jquery是生成代码之后为GroupName赋值,这样就不能同时选中了!

ASP.NET中RadioButton与Button的使用
楼上错了吧,这个应该是及时回送,把radiobutton人enableviewstate打开,然后当检测到用户点击按钮时在进行判断,如果为同意在把那个下一步的按钮显示出来

asp.net中两个radiobutton控件怎样不同时选中?
android控件之checkbox、radiobutton探究 checkbox和radiobutton控件都只有选中和未选中状态,不同的是radiobutton是单选按钮,需要编制到一个radiogroup中,同一时刻一个radiogroup中只能有一个按钮处于选中状态。以下为checkbox和radiobutton常用方法及说明:

ASP.NET控件RadioButtonList的排版
使用RadioButtonList控件好像默认换行。如果要显示到一行的话,可以使用表格限制。代码如下:<table> <tr> <td> 会议室状态:<\/td> <td> <asp:RadioButtonList ID="room_state" runat="server" RepeatDirection="Horizontal"> <asp:ListItem Selected="True">开放<\/asp:ListItem> <asp:ListItem>关闭<...

asp.net编程 编写程序显示10个单项选择题,用户选择答案并提交后给出...
在Gridview中放了一个radiobutton组 <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" SelectedIndex="0" Width="343px" OnSelectedIndexChanged="papersubmit_Click"> <Columns> <asp:TemplateField> <ItemTemplate> <asp:Label id=sque runat=server Text='<%# Eval("Ques...

.net页面上有三个RadioButton(服务器控件),控制下面三个层的隐藏和显 ...
function aa(){ var a=document.getElementById("<%=rdo1.ClientID%>").value;if(a=="true"){ document.getElementById("1").style.display="none";document.getElementById("2").style.display="block";document.getElementById("3").style.display="block";} } <\/script> <asp:Redio...

asp.net中radiobutton 的问题 C#
runat="server"> <div> <input id="A" type="radio" onclick="change1()" checked="checked" \/><input id="B" type="radio"onclick="change2()" \/><input id="C" type="text" \/><input id="D" type="text" disabled="disabled" \/> <\/div> <\/form> <\/body> <\/html> ...

相似回答