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

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
 
S

Steve C. Orr [MVP, MCSD]

Use this code:

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

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,774
Messages
2,569,599
Members
45,177
Latest member
OrderGlucea
Top