RadioButtonList SelectedItem 始终是第一个

发布于 2024-09-14 00:33:17 字数 506 浏览 4 评论 0原文

我使用带有四个项目的简单单选按钮列表,我启用了视图状态和回发,但无论我选择什么选项,它总是返回第一个值。

这是代码:

<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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

晨与橙与城 2024-09-21 00:33:17

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文