什么玩意??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();
}
}
}
}
} 展开
第二个:后台代码: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();
}
}
}
}
} 展开
3个回答
展开全部
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();
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();
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
最好是用RadioButtonList控件
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
在页面中有两个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按钮组。
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按钮组。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询