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>
何か案は ?