|
-
May 5th, 2008, 04:34 AM
#1
AutoRefresh an aspx-page
How can I set a ’timer’ that my aspx-page will refresh every 30 seconds?
...and justice for all
-
May 5th, 2008, 05:09 AM
#2
Re: AutoRefresh an aspx-page
There are multiple ways of doing this. Adding a simple meta tag in the aspx file can refresh the page
PHP Code:
<meta http-equiv="refresh" content="30">
Adding a header using the response object would also help
Code:
Response.AppendHeader("Refresh", "5");
-
May 5th, 2008, 07:20 AM
#3
Re: AutoRefresh an aspx-page
Perfect!
Code:
Response.AddHeader("Refresh", "30");
...made it for me!
...and justice for all
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|