私はRadioButtonList
とを持っていTextBox
ます。RadioButtonListの選択に従って、テキストボックスをフィルタリングしたい。
<asp:RadioButtonList ID="RadioButtonList1" runat="server" AutoPostBack="True" OnSelectedIndexChanged="RadioButtonList1_SelectedIndexChanged">
<asp:ListItem Text="NUMBER" Value="1" Selected="True"></asp:ListItem>
<asp:ListItem Text="TEXT" Value="2"></asp:ListItem>
</asp:RadioButtonList>
<asp:TextBox ID="txtID" runat="server">
value で listitem をクリックすると1
、ユーザーはテキストボックスに数値を入力できます。値2
、数値 + テキスト。また、長さを設定したいです。誰かがこれを行う方法を教えてもらえますか?