Hi,
In my aspx file, I have:
<asp:UpdatePanel ID="UpdatePanel3" UpdateMode="Always" runat="server">
<ContentTemplate>
<asp:Button ID="Button1" runat="server" Text="Button" />
</ContentTemplate>
</asp:UpdatePanel>
In javascript file I have:
$('#ctl00_ContentPlaceHolder1_Button1').click(function (e) {
alert('hello');
});
But only the first time click on the button, I got alert('hello'). no more alert messages afterwards. Any advices on this, please?
Thanks in advance.