RadioButtonList.Selectedvalue 返回空字符串

发布于 2024-10-29 00:43:17 字数 243 浏览 6 评论 0原文

我在 C# 代码中定义了数据源,并且有一个提交按钮,该按钮采用单选按钮列表的值,

asp:RadioButtonList    ID="RadioPaidIdList" runat="server" DataValueField ="Label" DataTextField = "Label"  

第一次单击“提交”时,它返回一个空值。下次我选择广播列表并单击提交时,它会返回正确的值。 诡异的 !!

I define the datasource in my c# code and I have a submit button which takes the value of the radiobuttonlist

asp:RadioButtonList    ID="RadioPaidIdList" runat="server" DataValueField ="Label" DataTextField = "Label"  

First time i click submit it returns an empty value. And next time i select a radiolist and click submit it returns a proper value.
Weird !!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

原野 2024-11-05 00:43:17

确保您在表单中选择了默认单选按钮。 WPF和winforms中的代码被check="true"。

Make sure you have a default radio button selected in your form. The code in WPF and winforms is checked="true".

国产ˉ祖宗 2024-11-05 00:43:17
 RadioButtonList1.SelectedItem.Text;


 RadioButtonList1.SelectedValue;

应用两种中的任何一种......
我希望它能帮助你......

 RadioButtonList1.SelectedItem.Text;


 RadioButtonList1.SelectedValue;

apply any one of tow......
i hope it help you........

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