The update panel control is not working in normal mode i.e. when i am browsing it without debugging while in debug mode it is working absolutely fine.
My code is as follows-
<asp:ScriptManager ID="ScriptManager1" runat="server" />
<asp:UpdatePanel ID="UpdatePanel1" UpdateMode="Conditional" runat="server">
<ContentTemplate>
<asp:Timer runat="server" id="Timer1" Interval="5000"></asp:Timer>
<%-- web content here --%>
</ContentTemplate>
</asp:UpdatePanel>
Please suggest for working of the above in normal mode without debugging. Thanks in advance.