在数据库的一列中,有“男女”两个值,现在我想将这俩个值变成RadioButtonList的选项,请问怎么绑定? 15
1个回答
展开全部
你是用C编程的吧,例子如下
#region 绑定各县信息
/// <summary>
/// 绑定各县信息
/// </summary>
private void BindCountyInfo()
{
County countyBll = new County();//
DataTable dtCounty = countyBll.GetList("").Tables[0];//获取所有县的信息
this.rbtnCounty.DataSource = dtCounty;
//rbtnCounty为RadioButtonList控件
this.rbtnCounty.DataTextField = "xjName";//县名
this.rbtnCounty.DataValueField = "xjID";//县ID
this.rbtnCounty.DataBind();//绑定信息
}
#endregion
#region 绑定各县信息
/// <summary>
/// 绑定各县信息
/// </summary>
private void BindCountyInfo()
{
County countyBll = new County();//
DataTable dtCounty = countyBll.GetList("").Tables[0];//获取所有县的信息
this.rbtnCounty.DataSource = dtCounty;
//rbtnCounty为RadioButtonList控件
this.rbtnCounty.DataTextField = "xjName";//县名
this.rbtnCounty.DataValueField = "xjID";//县ID
this.rbtnCounty.DataBind();//绑定信息
}
#endregion
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询