I didn't see that this was posted anywhere, so forgive if it is a repeat.
I've notice that the following few lines appear at the end of admin pages:
scriptname = split(request.servervariables("SCRIPT_NAME"),"/")
Response.Redirect "admin_login.asp?target=scriptname"
It should read:
scriptname = split(request.servervariables("SCRIPT_NAME"),"/")
Response.Redirect "admin_login.asp?target=" & scriptname(ubound(scriptname))
like it does in admin_home.asp to work correctly.
Nikkol
Edited by - Davio on 01 March 2002 13:13:30