如何在表单中垂直添加单选按钮?

发布于 2024-10-10 19:35:13 字数 56 浏览 3 评论 0原文

我正在 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 技术交流群。

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

发布评论

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

评论(3

南街九尾狐 2024-10-17 19:35:13
RadioButtonList rbl = new RadioButtonList();
rbl.RepeatDirection = RepeatDirection.Vertical;
RadioButtonList rbl = new RadioButtonList();
rbl.RepeatDirection = RepeatDirection.Vertical;
旧城空念 2024-10-17 19:35:13

您可以使用 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).

一花一树开 2024-10-17 19:35:13

可能的两种方法:

  • 提供一些 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".

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