Unless I'm miss-understanding the problem wrong, this small change to the login/logout form is all thats required, basically I just put in a redirect to my main page. I added that to my forum about a year ago and haven't heard of anyone having a problem since.
My login/logout stuff has been modified a little but heres the gist of it
<!-- Start Login/Logout Code -->
<%
select case Request.Form("Method_Type")
case "login"
%>
<% if strLoginStatus = 0 then %>
<SCRIPT LANGUAGE="JavaScript">
window.alert("Your username and/or password were incorrect,\nplease either try again or register for an account");
</SCRIPT>
<% else
Response.Redirect "/default.asp"
end if
case "logout"
Response.Redirect "/default.asp"
end select
HALO - an EverQuest and Camelot Guild
Edited by - Gremlin on 11 January 2002 05:22:47