I am working on a website and I want to use webwiz for the login. From the main page
navigator.aspx I call the
login_user.asp I then set a session having the page that called the
login_user.asp I then call the
login_user_test.asp when when done I can't get it to go back to
navigator.aspx. What am I doing wrong? Should I also include common.asp on navigator.aspx?
Section from Navigator.aspx
<a class="navigation" href="/forum/login_user.asp?strREF=../default.aspx">Login</a>
Section from login_user.asp
if isnull(request.querystring("strREF")) then
SESSION("strMasterpage")= null
else
SESSION("strMasterpage")= cstr(request.querystring("strREF"))
end if
Section from login_user_test.asp
ElseIF isnull(session("strMasterpage")) then
strReturnPage = "default.asp"
Else
strReturnPage = session("strMasterpage")
End If