什么玩意??RadioButton到底怎么绑定数据啊??为什么下面的都不对??

第一个:前台又有两个,一个男,一个女。stringsex=RadioButton1.CheckedRadioButton1.Text:RadioButton2.Text;... 第一个:前台又有两个,一个男,一个女。string sex=RadioButton1.Checked RadioButton1.Text:RadioButton2.Text;
第二个:后台代码:using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;

namespace _33
{
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
DataSet ds1 = new DataSet();
ds1.Tables.Add("stu1");
ds1.Tables["stu1"].Columns.Add("sex", typeof(string));
ds1.Tables["stu1"].Rows.Add(new object[] { "男" });
ds1.Tables["stu1"].Rows.Add(new object[] { "女" });
this.RadioButton1.DataSource = ds1.Tables["stu1"];

this.RadioButton1.DataTextField = "sex";
this.RadioButton1.DataBind();
}

}
}
}
}
展开
 我来答
songjian070
2011-03-21 · TA获得超过3026个赞
知道小有建树答主
回答量:604
采纳率:0%
帮助的人:345万
展开全部
DataSet ds1 = new DataSet();
ds1.Tables.Add("stu1");
ds1.Tables["stu1"].Columns.Add("sex", typeof(string));
ds1.Tables["stu1"].Rows.Add(new object[] { "男" });
ds1.Tables["stu1"].Rows.Add(new object[] { "女" });
RadioButtonList1.DataSource = ds1.Tables["stu1"];
this.RadioButtonList1.DataTextField = "sex";
this.RadioButtonList1.DataBind();
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
arrowsnow
2011-03-23 · 超过12用户采纳过TA的回答
知道答主
回答量:68
采纳率:0%
帮助的人:0
展开全部
最好是用RadioButtonList控件
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
liaojielin
2011-03-21 · TA获得超过161个赞
知道答主
回答量:197
采纳率:0%
帮助的人:188万
展开全部
在页面中有两个RadioButton按钮分别存储性别“男”与“女”,在两个RadioButton按钮中的GroupName属性创建一个单选按钮所选的组名称要一致,例如:RadioButtonName,在AutoPostBack属性中设置为:true,在事件中,CheckedChanged中写入代码:
protected void RadioButton1_CheckedChanged(object sender, EventArgs e)
{
if (this.RadioButton2.Checked == true)
{
this.RadioButton1.Checked = false;
}
}
protected void RadioButton2_CheckedChanged(object sender, EventArgs e)
{
if (this.RadioButton1.Checked == true)
{
this.RadioButton2.Checked = false;
}
}
就能实现按钮的交互选择。
现在使用RadioButton按钮控件比较麻烦,还不如使用RadioButtonList按钮控件,可以设置为同一个RadioButton按钮组。
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式