A
Amir Tohidi
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 = ConfigurationManager.AppSettings["RefreshFrequency"];
Page.Header.Controls.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 = ConfigurationManager.AppSettings["RefreshFrequency"];
Page.Header.Controls.Add(meta);