how can I make disable the back button of browser

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.....
 
J

Jayakrishnan

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
 
S

sethia4u

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....
 
J

Jayakrishnan

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
 
S

sethia4u

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
 

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

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top