首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

RadioButtonList控件有关问题

2012-01-16 
RadioButtonList控件问题做一个RadioButtonList控件时将AUTOPOSTBACK属性设置为true时选择之后又回到默认

RadioButtonList控件问题
做一个RadioButtonList控件时   将AUTOPOSTBACK属性设置为true时选择之后又回到默认值了
    这样做的数据绑定
RadioButtonList1.DataSource   =   DS.Tables[0].DefaultView;
RadioButtonList1.DataTextField= "药品名称 ";RadioButtonList1.DataValueField= "药品名称 ";
RadioButtonList1.DataBind();
当选择之后准备输出到lable5中时
this.Label5.Text=RadioButtonList1.SelectedItem.Value;
显示错误   未将对象引用设置到对象的实例。

[解决办法]
绑定事件写在哪?
!IsPostBack()
[解决办法]
绑定写在
if(!IsPostBack)
{
bind your radiobuttonlist;
}

热点排行