Hi
I have an ASP page that redirects the user to a url, depending on what group the user belongs to.
Code:
This redirects to the correct url, but on the Address box in Internet Explorer, it shows url-1 as opposed to the url-2 (e.g. instead of
Any ideas where I am going wrong?
Thanks
Dabase
I have an ASP page that redirects the user to a url, depending on what group the user belongs to.
Code:
Code:
...
ElseIF session("domain") = "1" or session("domain") = "3" Then
Response.Redirect("homepage.asp")
ElseIF session("domain") = "2" Then
Response.Redirect("[URL unfurl="true"]http://www.url-2.com/index.asp")[/URL]
End If
...
This redirects to the correct url, but on the Address box in Internet Explorer, it shows url-1 as opposed to the url-2 (e.g. instead of
Any ideas where I am going wrong?
Thanks
Dabase