Forum Moderators: open
I want to redirect people from a link to a page fromm one server to another based on a number ID in the link
From:
[myserver.com...]
All links wiht "Nr" 1120 should be routed to the other server but still keeping the Id.
[anotherserver.com...]
Any comments would be helpfull
Thx
Dim sURLIf Request.QueryString("NR") = "1120" Then
sURL = "http://anotherserver.com/app2/processForm.asp?"
sURL = sURL & Request.QueryStringResponse.Redirect sURL
End If
Which will pass whatever data was in the querystring to the second server - if you wanted to be more picky about the variables you're passing then you could quite easily just add them individually while building up sURL.
- Tony