I am trying to redirect a user when they entire a url in this format:
http://example.com/http://example2.com/
To the following:
http://example.com/?m=example2.com#http%3A%2F%2Fwww.example2.com%2F
I want to strip out the host of example2 and make it a querystring, then url encode the full url of example2 and put it as the anchor.
What is the best way to do this in asp.net. I can use mvc, iis7, or iis6. I know I could do this by mapping everything to .net in IIS6 and then using httpcontext.rewritepath but I bet there is a better way. Thank you
