Find Code:
All Words
Any of the Words
Exact Phrase
Home
:
Code
:
Forums
:
Submit
:
Mailing List
:
About
:
Contact
Code
All
VB.NET
ASP.NET
C#
VB Classic
ASP Classic
Snippets
Popular
Resources
Submit Code
Forums
Articles
Tips
Links
Books
Contest
Link to us
This ASP code will prevent your ASP pages from bei...
Author:
Peter Riley
E-mail:
Click to e-mail author
Submitted:
8/16/2000
Version:
ASP
Compatibility:
ASP
Category:
ASP
Views:
21774
This ASP code will prevent your ASP pages from being cached by the users browser.
Declarations:
'none
Code:
<% response.expires = 0 response.expiresabsolute = Now() - 1 response.addHeader "pragma","no-cache" response.addHeader "cache-control","private" Response.CacheControl = "no-cache" %>
Home
|
Forums
|
Submit
|
Books
|
Mailing List
|
Advertising
|
About
|
Contact
© 2023 A1VBCode. All rights reserved.
Legal disclaimer & terms of use
Privacy statement