Hi,
I have designed a project such that each page is cached.
When i click the log-off link, i set the following command so that no caching takes place and redirect to my home page(log-in page):
HttpContext.Cur rent.Response.C ache.SetCacheab ility(HttpCache ability.NoCache )
Session.Abandon ()
but however if i click on the back button i'm able to go to the previous page even though i have set no caching in the log-off link's click procedure?
so what should be done to avoid this from happening?
Thanks in advance
I have designed a project such that each page is cached.
When i click the log-off link, i set the following command so that no caching takes place and redirect to my home page(log-in page):
HttpContext.Cur rent.Response.C ache.SetCacheab ility(HttpCache ability.NoCache )
Session.Abandon ()
but however if i click on the back button i'm able to go to the previous page even though i have set no caching in the log-off link's click procedure?
so what should be done to avoid this from happening?
Thanks in advance
Comment