I implemented a UpdatePanel
in a Webform that I need to update automatically every 30 seconds, when debugeo in Visual Studio 2013 works correctly but when I implement it in my Web server with IIS8 is not updated. Help me know if I need to make any configuration on my IIS server.
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:Timer ID="Timer1" runat="server" Interval="3600" OnTick="Timer1_Tick1">
</asp:Timer>
<asp:UpdatePanel ID="UpdatePanel1" UpdateMode="Conditional" runat="server">
<Triggers>
<asp:AsyncPostBackTrigger ControlID="Timer1" EventName="Tick" />
</Triggers>
<ContentTemplate>
<script runat="server">
protected void Reload()
{
InitScreen();//inicializa controles de asp.net
LoadData(); //carga informacion en conntroles del asp.net
}
</script>
///CODIGO HTML
</ContentTemplate>
</asp:UpdatePanel>