我有一个包含两个ListItem的RadioButtonList:
<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 />
在第一个ListItem上,我需要有一个标签,显示页面后面代码中的一些文本。在逻辑上,在我看来,我可以做这样的事情: 100%
显然这不起作用,因为我收到错误: 'asp:ListItem'的'Text'属性不允许子对象。
有人能想出解决这种约束的方法吗?
答案 0 :(得分:0)
我最后通过在RadioButtonList下方放置相对定位来修复此问题。 修正了我。 感谢您的观看。