If I am in forum.asp or topic.asp and log in, I am redirected to default.asp. I would like it to return me to where I started the login from (ie default Snitz behavior). I don't see anything wrong with the code though. Here is the code from case "login" in the inc_header.asp
Response.Write "<meta http-equiv=""Refresh"" content=""2; URL=""" & Request.ServerVariables("HTTP_REFERER") & """>" & vbNewLine & _
"<p align=""center""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """><a href=""" & Request.ServerVariables("HTTP_REFERER") & """>Back To Forum</font></a></p>" & vbNewLine & _
" </td>" & vbNewline & _
" </tr>" & vbNewline & _
" </table>" & vbNewline & _
"<table align=""center"" border=""0"" cellPadding=""0"" cellSpacing=""0"" width=""95%"">" & vbNewLine & _
" <tr>" & vbNewLine & _
" <td>" & vbNewLine
Any ideas? Where else would it be?