on my online quiz web application i am using a ajax time control it is working fine on my local host servr but when i am hosting it to the remote server it not works properly
the timer becoms very slow
my code is
code from timerpage.aspx
<asp:ScriptManager ID="ScriptManager1" runat="server"/>
<asp:Timer ID="Timer1" runat="server" Interval="1000" ontick="Timer1_Tick"/>
<asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional">
<Triggers>
<asp:AsyncPostBackTrigger controlid="Timer1" eventname="Tick" />
</Triggers>
<ContentTemplate>
<h2> time remaining :
<asp:Label ID="time" runat="server"></asp:Label></h2>
...
Go to the complete details ...