How to expire a page in ASP.Net....

  • Thread starter Thread starter Sonia
  • Start date Start date
S

Sonia

Hello,

My development enviroment is ASP.Net and Frame work 1.1.

After procesing data in certain pages the user can navigate back to the
previous page by clicking back button.

I would like to expire the page when the user hits the back button.

What is the exact statement which does that? Where I have to code that?

Thanks for your reply.

Sonia
 
Use this code:

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