ExpiresAbsolute

C

Chuck Duchon

I am trying to force visitors browsers from using a cached copy of a
webpage.

Someone suggested the Response.ExpiresAbsolute

Does the page need to be define an ASP page or will this command work on a
normal HTM page?
 
C

Chuck Davis

-----Original Message-----
I am trying to force visitors browsers from using a cached copy of a
webpage.

Someone suggested the Response.ExpiresAbsolute

Does the page need to be define an ASP page or will this command work on a
normal HTM page?


.
Your visitors may always choose Source from the View drop
down menu and save the Notepad file. Anything on the
Internet is easy pickings.
 
J

Jens Peter Karlsen[FP MVP]

This is an ASP property and the correct thing to use to prevent caching
would be:
Response.CacheControl = "no-cache"

The ExpiresAbsolute property sets the precise date and time when a
response page cached on the browser will expire.

It must of course be in an ASP page.

Regards Jens Peter Karlsen. Microsoft MVP - Frontpage.
 
S

Stefan B Rusynko

For an html page use the following meta tags in the HEAD section
<meta http-equiv="Expires" content="0">
<meta http-equiv="Pragma" content="Nocache">

Better still just pass a false parameter in the link to the page as
<a here="thepagelink.htm?>The Link</a>




| This is an ASP property and the correct thing to use to prevent caching
| would be:
| Response.CacheControl = "no-cache"
|
| The ExpiresAbsolute property sets the precise date and time when a
| response page cached on the browser will expire.
|
| It must of course be in an ASP page.
|
| Regards Jens Peter Karlsen. Microsoft MVP - Frontpage.
|
| > -----Original Message-----
| > From: Chuck Duchon [mailto:[email protected]]
| > Posted At: 13. november 2004 22:47
| > Posted To: microsoft.public.frontpage.client
| > Conversation: ExpiresAbsolute
| > Subject: ExpiresAbsolute
| >
| >
| > I am trying to force visitors browsers from using a cached
| > copy of a webpage.
| >
| > Someone suggested the Response.ExpiresAbsolute
| >
| > Does the page need to be define an ASP page or will this
| > command work on a normal HTM page?
| >
| >
|
 
Top