2012-01-22 79 views
0

我的情景,RadioButtonList選擇IndexChanged

當我選擇列表中的選項時,我需要執行一些操作,如文本框應該被禁用。但我不發現我的斷點指向要執行的動作。請幫助

回答

0

我想你的意思是SelectedIndexChanged事件不會觸發,因爲you'vent將AutoPostBack設置爲true。

<asp:RadioButtonList ID="RadioButtonList1" runat="server" AutoPostBack="True" 
     onselectedindexchanged="RadioButtonList1_SelectedIndexChanged"> 
    </asp:RadioButtonList> 

代碼

protected void RadioButtonList1_SelectedIndexChanged(object sender, EventArgs e) 
{ 
    TextBox4.Enabled = false; 
} 
相關問題