ASKER
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server" />
<div>
<asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Always">
<ContentTemplate>
<asp:Timer ID="Timer1" runat="server" OnTick="Timer_Tick" Interval="5000" />
</ContentTemplate>
</asp:UpdatePanel>
<asp:Label ID="lbl" runat="server"></asp:Label>
<label id="lblHTML">test</label>
</div>
</form>
ASKER
The successor to Active Server Pages, ASP.NET websites utilize the .NET framework to produce dynamic, data and content-driven web applications and services. ASP.NET code can be written using any .NET supported language. As of 2009, ASP.NET can also apply the Model-View-Controller (MVC) pattern to web applications
TRUSTED BY
Don't know about the rest of your code but if you try using:
protected void Timer_Tick(object sender, EventArgs e)
{
ClientScript.RegisterStart
}
it should work depending if you are making a full postback or not (which is needed for this way to work). If You are controlling the contents of an update panel with the timer I guess you need to add the timer as a postback trigger (not async) for the update panel.
/Carl.