Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Expiring of HTML page?
Message
General information
Forum:
Visual FoxPro
Category:
Internet applications
Miscellaneous
Thread ID:
00729771
Message ID:
00729834
Views:
10
Hi,

You can disable the caching of Web pages on ASP side:
<% Response.CacheControl = "no-cache" %>
<% Response.AddHeader "Pragma", "no-cache" %>
<% Response.Expires = -1 %>
or in HTML Header:
<HTML><HEAD>
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Expires" CONTENT="-1">
</HEAD><BODY>
Details can be found in KB article Q234067.

Alexander


>Who can me direct to the right way to make a HTML page expiring after leaving the page.
>
>I.e. if the user leaves the page to the next page and than pushs the browsers Back button he should get a system message like "This page is expired and is invalid..."!
>
>Any hints?
Previous
Reply
Map
View

Click here to load this message in the networking platform