Link to home
Start Free TrialLog in
Avatar of xabi
xabi

asked on

Browser cache with ASP generated pages

I have a big trouble with NS cache with my asp generated pages. I'm trying "Response.Expires = 0" but it doesn't work well. Is there any real way to avoid Netscape use cache with this pages?
Sorry for my bad English, nut it's my 4th language.
Avatar of xabi
xabi

ASKER

Edited text of question.
ASKER CERTIFIED SOLUTION
Avatar of cadler
cadler

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Add this in your HTML Code

<head>
<meta http-equiv="buy-a-jewel.com" content="no-cache">
<meta http-equiv="Expires" content="Mon, 01 Jan 1990 12:00:00 GMT">
<title>Catalogue &amp; Shopping</title>
</head>

Avatar of xabi

ASKER

I'll try it