gpt4 book ai didi

asp.net - RadiobuttonList 标签格式

转载 作者:行者123 更新时间:2023-12-04 06:22:50 26 4
gpt4 key购买 nike

我有一个单选按钮列表,我需要在一些值之间添加标签。

我知道以下内容行不通,但这是我想在 .net 中执行的操作的最佳示例。

            <asp:RadioButtonList ID="RadioButtonList1" runat="server" CssClass="radioList" RepeatDirection="Vertical">
<label>Regular</label>
<asp:ListItem Text="Full Time" Value="1"></asp:ListItem>
<asp:ListItem Text="Part Time" Value="2"></asp:ListItem>
<asp:ListItem Text="AM 1" Value="3"></asp:ListItem>
<asp:ListItem Text="AM 2" Value="4"></asp:ListItem>
<label>Vo-Tech</label>
<asp:ListItem Text="PM 1" Value="5"></asp:ListItem>
<asp:ListItem Text="PM 2" Value="6"></asp:ListItem>
<label>Other</label>
<asp:ListItem Text="Night" Value="7"></asp:ListItem>
</asp:RadioButtonList>

这是我想要完成的基本 HTML 输出 http://jsfiddle.net/cuKh7/

我知道我可以只使用单个 RadioButtons,但我想将它保存在一个控件中。此外,我稍后可能会从数据库中获取这些值,而 RadioButtonList 会更容易。

我怎样才能在asp.net中完成上述 fiddle ?

我正在使用.net 3.5。

谢谢!

最佳答案

做你想做的事是不可能的(尽管如果你能做的话会很好。)考虑到你的计划是最终从数据库中提取这些值,你可能想把所有东西都放在里面一个 ListView 控件并手动处理布局。它并不完美,但至少会使绑定(bind)更简单。

或者,您可以将所有项目添加到 DropDownList,但诀窍是使用“禁用”标签设置标题项目。这将更容易实现,并且仍然允许用户只选择一个选项。

它看起来像这样:

enter image description here

有关示例,请参见以下 jsFiddle:http://jsfiddle.net/uZu7r/

关于asp.net - RadiobuttonList 标签格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6360961/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com