Setting Page Expiration...

  • Thread starter Thread starter Mustufa Baig
  • Start date Start date
M

Mustufa Baig

Hi,

Whenever the user clicks on Back Button, I want that page to be reloaded or
refreshed. Basically I don't want my page to be cached. How can I acheive
this functionality in asp.net?

Regards,
 
Hi,

You can put this in your page_load

Response.Cache.SetCacheability(HttpCacheability.NoCache)
Response.Cache.SetAllowResponseInBrowserHistory(false)

This will make the so the page is expired.

I hope this helps.

Mike Douglas

www.doitconsultants.com
 
This will ensure the page doesn't get cached.

Response.Expires = 0
Response.Cache.SetNoStore()
Response.AppendHeader("Pragma", "no-cache")
 
Hi Mike,

I tried but the following is nt valid:

Response.Cache.SetAllowResponseInBrowserHistory(false)

Thanks.
 
Hi Steve,

Response.Expires = 0 is provided for backward compatibility. Whats the new
way of getting this functionality?

Thanks.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top