Yes. You have to call SetNoStore on the HttpCachePolicy object exposed through the Response object's Cache property,
example :
Response.Cache.SetNoStore ();
Response.Write (DateTime.Now.ToLongTimeString ());
SetNoStore works by returning a Cache-Control: private, no-store header in the HTTP response.
In this example, it prevents caching of a Web page that shows the current time.
No comments:
Post a Comment