> Dear all,
>
> I want to mark my ASP.NET pages such that they are not cached.
>
> How can I do so?
Either set the OutputCache directive on your page(s)
<%@ OutputCache Location="None" %>
or set the Cache property of the HttpResponse in your code-behind class:
Response.Cache.SetCacheability(HttpCacheability.NoCache);
(which is equivalent to the directive shown above)
Cheers,

Signature
http://www.joergjooss.de
mailto:news-reply@joergjooss.de
pratham - 23 Aug 2005 12:23 GMT
Thanks for all your help.
My problem is resolved now.
> > Dear all,
> >
[quoted text clipped - 13 lines]
>
> Cheers,