我在用戶控件中有2個單選按鈕,並且控件已註冊到該頁面。當我單擊單選按鈕時,事件(CheckChanged)不會觸發。單選按鈕檢查更改甚至沒有觸發
<asp:View ID="viewfirst" runat="server">
<asp:UpdatePanel ID="updatepanel1" runat="server" UpdateMode="Always">
<ContentTemplate>
<asp:RadioButton ID="radio1" Text="Yes" Enabled="true" runat="server" />
<asp:RadioButton ID="radio2" Text="No" Enabled="true" runat="server" />
</ContentTemplate>
</asp:UpdatePanel>
</asp:View>
Below is code in behind file of the control.
Protected Sub radio1_CheckedChanged(sender As Object, e As EventArgs) Handles radio1.CheckedChanged
//
//
End Sub
看起來一切看起來不錯,但有些事情是錯誤的。你可以讓我知道。
在這件事情中沒有什麼,你會怎麼知道它是否會燃燒? – OneFineDay
將'autopostback = true'添加到單選按鈕 – Sandeep