获取数据中继器中单选按钮的检查状态

发布于 2024-12-24 17:34:49 字数 193 浏览 2 评论 0原文

我在 Windows 窗体中有一个数据中继器,在数据中继器中我有一个标签和一个单选按钮或组合框,单选按钮的数量及其文本是从我的数据库引入的,标签和组合框也是如此。

标签是一个问题,单选按钮或组合框允许用户回答问题。

我想要做的是获取单选按钮的选中状态,以便我可以在需要时揭示下一个问题。例如,如果问题 1 的回答为“否”,则仅显示问题 2。

I have a Data Repeater in a Windows Form, within the data repeater I have a label and either a radio button or combo box, the amount of radio buttons and the text for them is brought in from my database as is the label and combo box.

The label is a question and the radio buttons or combo box allows the user to answer the question.

What I want to do is get the checked status of the radio buttons so I can then reveal the next question if it is needed. e.g. only show question 2 if question 1 is answered No.

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

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

发布评论

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

评论(1

愁以何悠 2024-12-31 17:34:49
'0 = Index in Repeater.
Dim bolChecked As Boolean = CType(rptYourRepeater.Items(0).FindControl("IdOfRadioButton"), RadioButton).Checked
'0 = Index in Repeater.
Dim bolChecked As Boolean = CType(rptYourRepeater.Items(0).FindControl("IdOfRadioButton"), RadioButton).Checked
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文