I just can't figure this one out. I have a basic asp page with a link
It takes you to the login page in which the user logins into the website username and password.
At the end of the login code (setting session variables etc) I want to redirect my user to page1.asp if they have a urlRedirect of 1 and page0.asp if they have a 0.
This works if I hard code in the variable urlRedirect = 1 etc.
When I try:
Trim(Request("urlRedirect"))
Request("urlRedirect")
Request.QueryString("urlRedirect")
they all fail... It will not read the url param no matter what I try. Any ideas?
It takes you to the login page in which the user logins into the website username and password.
At the end of the login code (setting session variables etc) I want to redirect my user to page1.asp if they have a urlRedirect of 1 and page0.asp if they have a 0.
This works if I hard code in the variable urlRedirect = 1 etc.
When I try:
Trim(Request("urlRedirect"))
Request("urlRedirect")
Request.QueryString("urlRedirect")
they all fail... It will not read the url param no matter what I try. Any ideas?