how can I make disable the back button of browser

  • Thread starter Thread starter sethia4u
  • Start date Start date
S

sethia4u

Dear Programmers,

when I click on logout button I redirect my page to login page again,
session variables to null, but when I click on back button previous
page is appeared.

so plz tell me how I make disable the back button of browser.....
 
sethia4u said:
Dear Programmers,

when I click on logout button I redirect my page to login page again,
session variables to null, but when I click on back button previous
page is appeared.

so plz tell me how I make disable the back button of browser.....

Are you using FormsAuthentication in your application. If so then
you just add the following code on your on logout click.

FormsAuthentication.SignOut();
Response.Redirect(Request.UrlReferrer.ToString());

--
Regards,
JAYAKRISHNAN V,
TECHNOLOGY GROUP.
iInterchange Systems Pvt. Ltd.,
Chennai-40
 
Are you using FormsAuthentication in your application. If so then
you just add the following code on your on logout click.

FormsAuthentication.SignOut();
Response.Redirect(Request.UrlReferrer.ToString());

--
Regards,
JAYAKRISHNAN V,
TECHNOLOGY GROUP.
iInterchange Systems Pvt. Ltd.,
Chennai-40

thanx for ur precious response but, i'm not using FormsAuthentication
in my application.... I'm using manually authentication through SQL
Server 2000 and if....else statement....
plz give me reply in this matter....
 
sethia4u said:
thanx for ur precious response but, i'm not using FormsAuthentication
in my application.... I'm using manually authentication through SQL
Server 2000 and if....else statement....
plz give me reply in this matter....

Add this code on logout button page. This may help you.

<script>
javascript:window.history.forward(1);
</script>

--
Regards,
JAYAKRISHNAN V,
TECHNOLOGY GROUP.
iInterchange Systems Pvt. Ltd.,
Chennai-40
 
Add this code on logout button page. This may help you.

   <script>
   javascript:window.history.forward(1);
   </script>

--
Regards,
JAYAKRISHNAN V,
TECHNOLOGY GROUP.
iInterchange Systems Pvt. Ltd.,
Chennai-40- Hide quoted text -

- Show quoted text -

thanx a lot Ur suggested coding helps me lot.
thanking u very much again....

bye
 
Back
Top