Find the following on line 307 of inc_header.asp and change the highlighted code to the desired URI:Response.Write "<meta http-equiv=""Refresh"" content=""2; URL=" & strReferer & """>" & vbNewLine & _
"<p align=""center""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """><a href=""" & strReferer & """>Back To Forum</font></a></p>" & vbNewLine & _
Note that this will redirect people to your custom page whether login was successful or not, if you do not want people redirected to this page if login fails, you'll need to copy the existing code from lines 307 & 308 and paste if before the else and the end if in the if statement immediately preceeding them then make the above changes to the second instance of the code (in the else part of the statement).
Also, find the following on line 75 of login.asp and replace the code in green with your URI:Response.Write " <p align=""center""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """><a href="""
if strTarget = "" then
Response.Write "default.asp"
else
Response.Write strTarget
end if
Response.Write """>Click here to Continue</a></font></p>" & vbNewLine
Response.Write " <meta http-equiv=""Refresh"" content=""2; URL="
if strTarget = "" then
Response.Write "default.asp"
else
Response.Write strTarget
end if
Response.Write """>" & vbNewline & _
" <br />" & vbNewLine