I have asp: UpdatePanel with asp: Timer. They are on the Wizard / Contents page. Code below:
<asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional"> <ContentTemplate> <asp:Timer ID="Timer1" runat="server" Interval="5000" OnTick="Timer1_Tick"></asp:Timer> </ContentTemplate> </asp:UpdatePanel>
But when the timer fires, I get the following error:
Microsoft JScript runtime error: Sys.WebForms.PageRequestManagerParserErrorException: a message received from the server cannot be parsed. Common causes of this error are changes in response to Response.Write () calls, response filters, HttpModules, or server tracing. Details: parsing error near '
This works in a standalone web form, but not on the homepage page.
Can anyone explain a fix for this?
Thanks in advance for your help!
source share