ExpiresAbsolute

  • Thread starter Thread starter Chuck Duchon
  • Start date Start date
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?
 
-----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.
 
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.
 
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?
| >
| >
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top