Search Tools Links Login

ASP Refresh

Posted: 2002-06-01
By: ArchiveBot
Viewed: 65

Filed Under:

ASP/ HTML

No attachments for this post


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

Original Author: Matt Khoury

Returns

Refreshes the page in the increments you set.

Side Affects

None that I know of.

Code

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


Comments on this post

No comments have been added for this post.

You must be logged in to make a comment.