Click here to Skip to main content
15,891,431 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
When the user logs out of the page and does not close Internet Explorer, and again try to access the page either through favorite link or by entering URL, they are automatically logged into the page again.
We want this NOT to happen. We want the user to always have to re-enter all Login data on the main login.aspx

I have validated session correctly, even though this problem continueonly my system. Other system working correctly. I think something browser settings problem.
Posted
Updated 28-Mar-10 23:45pm
v5

Well, whatever SQL/Pay is, it seems they've not written it very well. If you have access to the source, you can fix it. Otherwise, I don't see what you hope to achieve remotely.
 
Share this answer
 
Sounds like, there is an option of 'Remember password' that is in play.

If so, based on your requirement, it would be really difficult to force it on. Browsers today support storing username/passwords and that is totally on user. So, you can try this:
autocomplete = "off" as:
<form id="loginForm" action="login.cgi" method="post" autocomplete="off">

I think this is IE/FF only... in case you still face issue and you still need something like re-login...
Use real two-factor authentification[^]to avoid the sole dependency on passwords which might be stored in the user's browser cache

Ex: having a compulsory checkbox to be clicked in order to login... or an image captcha to be read/entered in order to login.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900