For example:
Visitor goes to www.test.com?src=source1 and gets redirected to www.site-a.com?src=source1
Visitor goes to www.test.com?src=source2 and gets redirected to www.site-a.com?src=source2
and so on
I don't want to hard code:
Response.Redirect("http://site-a.com?src=source1")
for each possible source. I want whatever source string is in the original visit to pass into the Response.Redirect and show on the destination page, something like:
Response.Redirect("http://site-a.com?src=" + mysource)
But how do actually I code this in VB.net to read the source string in the first URL and automatically add it to the destination URL?Thanks for any help on this.

New Topic/Question
Reply



MultiQuote





|