从中继器内的单选按钮获取选定的单选按钮列表值
我在中继器中有一个单选按钮列表。我正在展示它的屏幕截图。我在中继器的标题模板内有列标题。在项目模板中,我有 4 个字段/列。第三个字段是单选按钮列表。例如,如果我选择“测试任务 2”行中的“是”单选按钮 - 我需要回发并保存该记录的值(返回到数据库)。我的中继器可能会显示多行字段和单选按钮列表。
I have a radiobuttonlist inside a repeater. I am showing a screenshot of what this looks like. I have column headers inside the header template of the repeater. In the item template, I have the 4 fields/columns. The 3rd field is a radio button list. If, for example, I select the "Yes" radio button in the "Test Task 2" row - I need to postback and save the value of that record (back to a database). My repeater could potentially display many rows of fields and radio button lists.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
试试这个
Try this
我在 gridview 中使用过这样的东西希望这可以帮助你
假设我们有 2 个按钮
只需使用 oncheckedChanged 事件进行回发
并在 .cs 页面中使用类似这样的代码我相信这可以帮助你
希望这可以帮助你
I have used something in gridview like this hope this can help you
Let us consider we have 2 buttons
Just use the oncheckedChanged event for post back
and in .cs Page use the code something like this I m sure this can help you
Hope this can help you