开发者

ASP.NET - How to add a label to a RadioButtonList ListItem?

开发者 https://www.devze.com 2022-12-21 23:47 出处:网络
I have a RadioButtonList with two ListItems included: <asp:RadioButtonList runat=\"server\" ID=\"optRollover\" OnSelectedIndexChanged=\"RolloverOptionSelected\" AutoPostBack=\"true\">

I have a RadioButtonList with two ListItems included:

<asp:RadioButtonList runat="server" ID="optRollover" OnSelectedIndexChanged="RolloverOptionSelected" AutoPostBack="true">
                    <asp:ListItem Value="0">100% </asp:ListItem>
                    <asp:ListItem Value="1">Less than 100%</asp:ListItem>
</asp:RadioButtonList><br />               

On the first ListItem I need to have a label that displays some text from the code behind of the page. Logically it seems to me like I w开发者_C百科ould be able to do something like this: 100%

Obviously this does not work because I am getting an error: The 'Text' property of 'asp:ListItem' does not allow child objects.

Can anyone think of a way around this constraint?


I ended up fixing this by placing a below the RadioButtonList with relative positioning. Fixed me right up. Thanks for viewing.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号