Loading

Wednesday, April 7, 2010

ASP VB Script - Auto Refresh Page

Refresh every 10 seconds within a page
<% 

    Response.AddHeader "Refresh", "10" 'Seconds
%>
     

Refresh every 5 seconds and redirect to a given link.

<% 
    Response.AddHeader "Refresh", "5;URL=www.google.com"  '5 Seconds    
%>

SHARE TWEET

Thank you for reading this article ASP VB Script - Auto Refresh Page With URL https://x-tutorials.blogspot.com/2010/04/asp-vb-script-auto-refresh-page.html. Also a time to read the other articles.

0 comments:

Write your comment for this article ASP VB Script - Auto Refresh Page above!