Adding a Sign Out Link?

M

Mark Fitzpatrick

Usually this is completely dependent on the system you are using for a
signin mechanism. If you're using Windows Authentication, then pretty much
IE will stay authenticated until it's closed (and sometimes until the
computer is shut down if it's being really stubborn).

If you're using the User Registration component to protect something such as
a forum, then you don't really need a logout link because, technically, the
user really isn't logged in. The user registration form primarily just
checks the user's username and password then moves them on. It doesn't
really do much else so the logout wouldn't be effective even if there was
one in this case.

Hope this helps,
Mark Fitzpatrick
Microsoft MVP - FrontPage
 
S

Stefan B Rusynko

See http://www.devguru.com/Technologies/asp/quickref/session_abandon.html

Since the login and login info is maintained by ASP Sessions
- create a button to link (named log out) to a page (where you want them to end up at) that just has the following ASP code at the
top

<% Session.Abandon %>





--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
_____________________________________________


| This is what it is: http://support.microsoft.com/kb/321503/
|
| Please Help,
| Josh
| [email protected]
|
 
J

Jens Peter Karlsen [FP-MVP]

And add a link to the login page in case they have second thoughts.

Regards Jens Peter Karlsen. Microsoft MVP - Frontpage.
 
Top