如何在表单中垂直添加单选按钮?
我正在 ASP.Net 的代码隐藏中动态创建单选按钮,如何添加控件以便它们垂直显示而不是水平显示?
I am dynamically creating radio button within code behind in ASP.Net, how do I add the controls so they appear vertically instead of horizontally?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 RadioButtonList 控件,并将 RepeatDirection 设置为 Vertical。
如果这是不可能的,那么......
将它们添加到有序列表(OL 元素)或无序列表(UL)中。
You can use RadioButtonList Control with RepeatDirection set to Vertical.
If that is not possible then....
Add them to a ordered list(OL element) or an unordered list(UL).
可能的两种方法:
提供一些 CSS 类,并在您的 css 中为该类提供一些样式,例如
display:block;
使用 RadioButtonList 控件作为这些单选按钮的容器。将“RepeatDirection”属性设置为“Vertical”。
Possible two ways:
Give some CSS class, and in your css give that class some style like
display:block;
Use RadioButtonList control as container to those radio buttons. Set the "RepeatDirection" property to "Vertical".