README.md

December 4, 2022 ยท View on GitHub

Fresh Page

Description

To force the end user's browser to always load a new copy of your web page. Caution, this is a little more stressful on the server as it removes some of the client side rendering.

More Info

Fresh current up-to-date web content.

A little more stressful on the server.

Submitted On
ByMatt Khoury
LevelIntermediate
User Rating5.0 (10 globes from 2 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
  %>