RadioButtonList SelectedItem 始终是第一个
我使用带有四个项目的简单单选按钮列表,我启用了视图状态和回发,但无论我选择什么选项,它总是返回第一个值。
这是代码:
<asp:RadioButtonList runat="server" AutoPostBack="true"
EnableViewState="true" OnSelectedIndexChanged="Changed" ID="rbSlots">
</asp:RadioButtonList>
ListItem item = new ListItem(starthour + " - " + stophour + ds.Tables[0].Rows[i]["LastName"].ToString(), ds.Tables[0].Rows[i]["xavid"] + "¤" + ds.Tables[0].Rows[i]["xuserid"]);
我有 RadCalendar,在 SelectedDateChanged 事件上我填充了 radlist
I am using simple radiobuttonlist with four items, I have enabled viewstate and postback but whatever option I choose it always return first value.
Here is the code:
<asp:RadioButtonList runat="server" AutoPostBack="true"
EnableViewState="true" OnSelectedIndexChanged="Changed" ID="rbSlots">
</asp:RadioButtonList>
ListItem item = new ListItem(starthour + " - " + stophour + ds.Tables[0].Rows[i]["LastName"].ToString(), ds.Tables[0].Rows[i]["xavid"] + "¤" + ds.Tables[0].Rows[i]["xuserid"]);
and I have RadCalendar, on which SelectedDateChanged Event I populate the radlist
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Vibralux 感谢您的回复!
我现在修复了它,这是一个错误,我生成的列表项的 VALUE 不是唯一的,所以我只是为 Listitem 分配了唯一的值,它开始正常工作。
问候
Vibralux thanks for reply!
I fixed it now, it was a mistake that my VALUE for list items which I was generating were not unique, so I just assigned unique values to Listitem and it started working fine.
Regards