Here is my code:
I dont see what i am doing wrong. I am tryign to pass the variable exists from RegisterUser.asp to Register.asp
RegisterUser.asp
Response.Redirect "../Forms/Register.asp?exists=yes"
Register.asp
if (Request.Form("exists") = yes ) then
Response.Write " User name and password already exists, please make appropriate changes and try again "
end if
The Response.Buffer is also already set to TRUE.