Instead of using a META refresh, use an ASP refresh to insure you have the most current copy of the web page.
Refreshes the page in the increments you set.
None that I know of.
Submitted On | |
By | Matt Khoury |
Level | Beginner |
User Rating | 4.8 (38 globes from 8 users) |
Compatibility | ASP (Active Server Pages), VbScript (browser/client side) |
Category |Internet/ Browsers/ HTML World |ASP / VbScript Archive File |
<%@ Language=VBScript %>
<%
Option Explicit
Response.Expires = 0
Response.Buffer = True
Response.Clear
Response.AddHeader "Refresh", "10"
%>