Is there anyway I can prevent caching? I tried this
http://support.microsoft.com/default.aspx?scid=kb;en-us;165150
<% response.addheader("Pragma", "No-Cache") %>
but it didn't work.
Please advise.
Thanks.
Karen
Alvin Bruney - 14 Oct 2003 20:27 GMT
enableviewstate = false
enablesessions = false
Cache.SetCacheability(HttpCacheability.ServerAndNoCache);
> Is there anyway I can prevent caching? I tried this
>
[quoted text clipped - 9 lines]
>
> Karen