RadioButtonListから1 つの listItemを無効にしたい場合は、両方の ListItem を表示するか、2 番目の listItem ie(External)を無効にするかのような条件に依存します。したがって、ユーザーは2番目のリスト項目にアクセスできませんquerystring contain true
私は次のようなURLを持っています
abc.com/Account.aspx?type=true
abc.com/Account.aspx?type=false
コード オン ページ Account.aspx
<asp:RadioButtonList ID="rdodomiantype" runat="server" RepeatDirection="Horizontal" onclick="setTextbox()">
<asp:ListItem Selected="True" Value="0" >Default</asp:ListItem>
<asp:ListItem Value="1" >External</asp:ListItem>
</asp:RadioButtonList>