OK!
This is how I made the quick login for the default.asp:
<!-- QUICK LOGIN - START --------------------------------- -->
<%
Dim Return
return = Request.ServerVariables("SCRIPT_NAME") & "?" & Request.ServerVariables("QUERY_STRING")
%>
<form action="login_user_2.asp?return=<%=Return%>" name="frmLogin" method="post">
<td valign="bottom" width="1">
<span class="formtext">Username:</span><br>
<input type="text" name="name" class="input" maxlength="15">
</td>
<td valign="bottom" width="1">
<span class="formtext">Password:</span><br>
<input type="password" name="password" class="input" maxlength="15">
</td>
<td valign="bottom" width="1">
<input type="submit" value="Login" class="knapp">
</td>
<!-- SessionsID -->
<input type="hidden" name="sessionID" value="<% = Session.SessionID %>" />
<!-- Add user to "Active Users" -->
<input type="hidden" name="ActiveUsers" value="True" checked />
</form>
<!-- QUICK LOGIN - END ----------------------------------- -->
And this is the login_user_2.asp at line 165 (Note: It just returns):
Response.Redirect(request.querystring("return"))
Edited by jabbasabba