P pTsy Oct 7, 2004 #1 How to enforce ASP.NET page reloading in other words initiate Page_Load call in C#. Thanks
S Scott Allen Oct 7, 2004 #2 You have to force the browser to issue a request for the page. You could do this with a META tag, i.e.: <meta http-equiv="refresh" content="60"> The time is specified in seconds. HTH,
You have to force the browser to issue a request for the page. You could do this with a META tag, i.e.: <meta http-equiv="refresh" content="60"> The time is specified in seconds. HTH,
J James Oct 7, 2004 #3 response.redirect back to the page Scott Allen said: You have to force the browser to issue a request for the page. You could do this with a META tag, i.e.: <meta http-equiv="refresh" content="60"> The time is specified in seconds. HTH, Click to expand...
response.redirect back to the page Scott Allen said: You have to force the browser to issue a request for the page. You could do this with a META tag, i.e.: <meta http-equiv="refresh" content="60"> The time is specified in seconds. HTH, Click to expand...