我正在使用 ASP.NET MVC 3,我想接受 url 作为其中一项操作的参数。但是,对于以下示例,我收到“ HTTP Error 400 - Bad Request. ”错误。我该如何解决这个问题?
例子:
http://localhost:8343/http://google.com
全球.asax.cs:
routes.MapRoute(
"Default", // Route name
"{hostUrl}", // URL with parameters
new { controller = "Home", action = "Index", hostUrl = UrlParameter.Optional } // Parameter defaults
);