I use master-pages everywhere. They contain my menu with ImageButton
s. They display fine, but on one page, the events are not firing, except for the help-button, which works. The page that doesn't work contains UpdatePanel
s.
ScriptManager
on that page is set to AsyncPostBackTimeout="600"
.
How can I start resolving this issue? Here's some of my code from the masterpage:
<div id="TopLinksDiv">
<a href="#">
<div id="HelpButton">
<asp:ImageButton ID="imghelp" AlternateText="Help" ImageUrl="~/Resources/Images/FINALY_HelpBtn.png"
runat="server" />
</div>
</a>
<a href="#">
<div id="HomeButton">
<asp:ImageButton ID="imgHome" AlternateText="Home" ImageUrl="~/Resources/Images/FINALY_HomeBtn.png"
runat="server" />
</div>
</a>
<a href="#">
<div id="ChangePWDButton">
<asp:ImageButton ID="imgChangePwd" AlternateText="Change Password" ImageUrl="~/Resources/Images/FINALY_ChangePWD.png"
runat="server" />
</div>
</a>
<a>
<div id="LogoutButton">
<asp:ImageButton ID="imgLogout" AlternateText="LogOut" ImageUrl="~/Resources/Images/FINALY_LogoutBtn.png"
runat="server" />
</div>