4
我想收到一個字符串作爲URL中的ID。這裏是一個例子:URL路由:如何將字符串作爲我的ID?
http://www.example.com/Home/Portal/Fishing
我想在我的ID釣魚。
從Global.asax.cs中public ActionResult Portal(string name)
{
// some code
ViewData["Portal Name"] = name;
}
代碼:從我的控制器
代碼:
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults
);
非常感謝。有用! – GabrielC