我想要一个 RadioButton 来显示像“<hello world>”这样的文本(注意我想要显示“<”和“>”字符,而不是被解释为 HTML 标记字符)。
尝试过这样的事情:
<asp:RadioButton ID="RadioButton1" runat="server" Text="<hello world>" AutoPostBack="True" />
但这在浏览器上不显示任何文本,并在客户端呈现为:
<span class="radiobutton"><input id="ctl00_mainCopy_wizard_RadioButton1" type="radio"
... />
<label for="ctl00_mainCopy_wizard_RadioButton1"><hello world></label></span>
有任何想法吗 ?