Hi
I have a web page that has a TreeView on it. If I DONT'T expand the TreeView
nodes, the auto refresh works nicely: my page gets refreshed every minute. As
soon as I expand a node on the TreeView, the page stops auto-refreshing.
Any ideas why this is happening?
I have acheived auto refresh using the following:
HtmlMeta meta = new HtmlMeta();
meta.HttpEquiv = "refresh";
meta.Content = ConfigurationMa nager.AppSettin gs["RefreshFrequen cy"];
Page.Header.Con trols.Add(meta) ;
I have a web page that has a TreeView on it. If I DONT'T expand the TreeView
nodes, the auto refresh works nicely: my page gets refreshed every minute. As
soon as I expand a node on the TreeView, the page stops auto-refreshing.
Any ideas why this is happening?
I have acheived auto refresh using the following:
HtmlMeta meta = new HtmlMeta();
meta.HttpEquiv = "refresh";
meta.Content = ConfigurationMa nager.AppSettin gs["RefreshFrequen cy"];
Page.Header.Con trols.Add(meta) ;
Comment