repeater中嵌套绑定RedioButtonList问题?请求完整的代码块。谢谢

2024-12-02 17:47:03
推荐回答(2个)
回答(1):

事件错误,应该在ItemDataBound事件中处理,并且多加一个判断

protected void Repeater1_ItemDataBound(object sender, RepeaterItemEventArgs e)
{
if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
{
//...
}
}

详细代码贴在http://zhidao.baidu.com/question/310619802.html#here

回答(2):

用的着这么麻烦么 简单的问题 在绑定Repeater数据源的时候一起吧数据源给RadioButtonList绑定了不就好了么 在说了你的那种逻辑对么,也就是每次创建项的时候都去绑定RadioButtonList数据源?这个应该是不正确的,就直接一起绑定应该就可以的