I have the following routing path defined in global.asax to handle two parameters in the url:
routes.MapRoute(
"Default", // Route name
"{page}/{th}", // URL with parameters
new { controller = "Home", action = "Index", page = UrlParameter.Optional, th = UrlParameter.Optional } // Parameter defaults
);
The first parameter is a URL of another website, i.e. www.othersite.com/about/.
Even if I encode the slashes to %2f it fails to route the URL correctly. I want to use something like this:
http://{mywebsite}/www.othersite.net%2fabout%2f/{parameter2}
I do not want to use Base64 encoding as I want the URL to be readable as above.
I'm using MVC 3.
Thanks