DataList 内有一个可选的 RadioButton
我正在尝试在我的网络应用程序中实现多项选择题。我在数据列表中有数据列表。第一个数据列表包含问题,第二个数据列表包含选择,一次只能选择一个选项。我正在使用单选按钮。尽管我已经设置了 RadioButton.GroupName 属性,但我无法使它们一次可选择一个。
请帮忙。
I am trying to implement multiple choice questions within my web application. I have datalist within a datalist. First datalist contains questions, second datalist contains choice, only one choice should be selectable at a time. I am using radio button. Even though I have set RadioButton.GroupName property, I can't make them selectable one at a time.
Please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用RadioButtonList,一个RadioButtonList中只能选择一个RadioButton。使用 RadioButtonList 而不是第二个 DataList。
Use a RadioButtonList, only one RadioButton of a RadioButtonList can be selected. Use the RadioButtonList instead of the second DataList.
使用复选框代替单选按钮
Use CheckBox instead of RadioButton