README.md
December 4, 2022 ยท View on GitHub
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 | |
| By | Matt Khoury |
| Level | Intermediate |
| User Rating | 5.0 (10 globes from 2 users) |
| Compatibility | ASP (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
%>