Search 
DailyCoding > Web

How not to cache a page output in ASP.NET

Explains how not to cache pages in asp.net to avoid them stored at client side
Author admin on Jul 31, 2008 4 Comments
Rate it    (Rated 4 by 1 people)
463 Views

In one of my post, I posted about How to cache a page output in ASP.NET, but sometime you have requirement like the page should never be cached. Every time user request a particular url it should give you fresh version of the page or file. To achieve this simply added Location="None" to the OutputCache directives.

<%@ OutputCache Location="None" VaryByParam="None" %>

Using Location="None" will tell the browser not to cache the page and hence your can prevent the page from saving on temporary internet files on client's machine. This could be useful when you don't want you pages or some particular page to be stored at client side for security reasons.

ASP.NET | Utility

Discussion

PP On Aug 4, 2008 05:16 PM
Word "aps.net" is mis-spelled :)

Daily Coder On Aug 4, 2008 07:43 PM
Corrected.. Thanks :)

samiran On Sep 7, 2008 09:55 PM
hey there i am a beginner of asp.net and wanted to learn something more day by day well this is a very good thing i came to know as its very helpful for me...
thanks buddy

Daily Coder On Sep 8, 2008 01:08 AM
Thanks samiran :).

Leave a Comment

Name
Email Address
Web Site
© Copyright 2008 Daily Coding • All rights reserved