README.md

December 4, 2022 ยท View on GitHub

ASP Refresh

Description

Instead of using a META refresh, use an ASP refresh to insure you have the most current copy of the web page.

More Info

Refreshes the page in the increments you set.

None that I know of.

Submitted On
ByMatt Khoury
LevelBeginner
User Rating4.8 (38 globes from 8 users)
CompatibilityASP (Active Server Pages), VbScript (browser/client side)

Category |Internet/ Browsers/ HTML World |ASP / VbScript Archive File |

Source Code

<%@ Language=VBScript %>
<%
	Option Explicit
	Response.Expires = 0
	Response.Buffer = True
	Response.Clear
	Response.AddHeader "Refresh", "10"
%>