How can I set a ’timer’ that my aspx-page will refresh every 30 seconds?
Printable View
How can I set a ’timer’ that my aspx-page will refresh every 30 seconds?
There are multiple ways of doing this. Adding a simple meta tag in the aspx file can refresh the pageAdding a header using the response object would also helpPHP Code:<meta http-equiv="refresh" content="30">
Code:Response.AppendHeader("Refresh", "5");
Perfect!
...made it for me!Code:Response.AddHeader("Refresh", "30");