How to make an ASPX Page Become non-backable??

R

RC

Hi,

How to make a Page Become time expired when user press back button?
Any Sample Code or reference provided?

Thanks
RC
 
J

Joerg Jooss

RC said:
Hi,

How to make a Page Become time expired when user press back button?
Any Sample Code or reference provided?

There's no guarantee that a browser applies caching or expiration
instructions to locally stored pages. Still, for most browsers this
does work.

Either set the OutputCache directive on your page(s)

<%@ OutputCache Location="None" %>

or set the Cache property of the HttpResponse in your code-behind class:

Response.Cache.SetCacheability(HttpCacheability.NoCache);

(which is equivalent to the directive shown above)

Cheers,
 

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,755
Messages
2,569,534
Members
45,008
Latest member
Rahul737

Latest Threads

Top