Setting Page Expiration...

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,
 
M

Mike Douglas

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
 
S

Steve C. Orr [MVP, MCSD]

This will ensure the page doesn't get cached.

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

Mustufa Baig

Hi Mike,

I tried but the following is nt valid:

Response.Cache.SetAllowResponseInBrowserHistory(false)

Thanks.
 
M

Mustufa Baig

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

Members online

No members online now.

Forum statistics

Threads
473,764
Messages
2,569,564
Members
45,039
Latest member
CasimiraVa

Latest Threads

Top