log out

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a client only page on my website. My clients have to log in to be able
to retrieve the information listed. When I tested this - I logged out (I have
an interactive button to do this). It works great. However, when I got to log
back in (with out leaving the host site) I do not need to log in again. I
would like for clients to log back in after they leave the subsite. Any
suggestions?
 
You would have to close your browser if you are logging in via login dialog provided via function of
the server.

--
==============================================
Thomas A. Rowe
Microsoft MVP - FrontPage
==============================================
Agents Real Estate Listing Network
http://www.NReal.com
==============================================
 
Actually, you may have close all open browsers.

--
==============================================
Thomas A. Rowe
Microsoft MVP - FrontPage
==============================================
Agents Real Estate Listing Network
http://www.NReal.com
==============================================
 
Only if the login is done via ASP or another server-side script that uses sessions.

--
==============================================
Thomas A. Rowe
Microsoft MVP - FrontPage
==============================================
Agents Real Estate Listing Network
http://www.NReal.com
==============================================
 
simple log out script:

<%
session.abandon
request.redirect ('index.html')
%>

This would work if you have an ASP logon script that uses session cookies.

Without knowing your actual logon script we can't determine how the logout
would work.

Are you using a logon script or using the htaccess/htpasswd feature which
brings up the popup logon box?
 
Back
Top