MasterPage / Content Page -> C# Programmatically (Server Side) force Content
Pagerestart
I have a content page that loads with a custom control.
The custom control is a SlideShow created dynamically using JQuery,
Javascript.
The SlideShow loads images & an xml defining the order of those images.
The works very nicely.
However, I need to set a timer to force the content page (on each client) to
reload - fresh - with the control being recreated. New images and xmls will
be periodically present.
I have tried a variety things using: setTimeout("refresh()", 1000000);
and window.location
= "../Restart.aspx"
I have tried using the IPostBackEventHandler and
Response.AppendHeader("Refresh",
"0;URL=Default.aspx");
All seem inconsistent in the forced reload of the content page from
scratch. I am not caching, <meta http-equiv="pragma" content="no-cache" />,
and have programmatically tried to clear the cache keys before refresh... to
no avail.
Help?!?!