questions about login and "remember me next time"

D

Dan

Hi,

I use the logon control for logging into the application. When logging and
checking the option "remember me next time" and then closing the browser
without to press any logout button which logout the user, the next time i
start the browser and go to the application, i don't need to login. That's
ok.

My questions are:

1) when logging and checking the option "remember me next time" but then
pressing the button logout ( with the code: FormsAuthentication.SignOut() )
and closing the browser, the next time i start the browser and go to the
application, i have to login again.
Is this logical?
2) And if yes, is it not better not to put a logout button, but just leaving
the browser?
3) Is there a difference between closing the browser and logout?

Thanks
Dan
 
L

Lau Lei Cheong

Dan said:
My questions are:

1) when logging and checking the option "remember me next time" but then
pressing the button logout ( with the code:
FormsAuthentication.SignOut() ) and closing the browser, the next time i
start the browser and go to the application, i have to login again.
Is this logical?
Yes. By pressing logout it implies the user wants to "wrap out information
preserved on the PC to login automatically".
2) And if yes, is it not better not to put a logout button, but just
leaving the browser?
You'd better put the logout button there, just in case they want to switch
user.
And since there is tabbed browsing, and in certain browsers all tabbed pages
shares login sessions, it may not be desirable to require them to exit
browser to logout.
3) Is there a difference between closing the browser and logout?
You can logout but conserves non-user related preferences (like display
langauge), plus like I said above, sometimes closing browser is not
desirable.
 
D

Dan

Thanks

Lau Lei Cheong said:
Yes. By pressing logout it implies the user wants to "wrap out
information preserved on the PC to login automatically".

You'd better put the logout button there, just in case they want to switch
user.
And since there is tabbed browsing, and in certain browsers all tabbed
pages shares login sessions, it may not be desirable to require them to
exit browser to logout.

You can logout but conserves non-user related preferences (like display
langauge), plus like I said above, sometimes closing browser is not
desirable.
 

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

Top