นี่อาจเป็นปีที่ผ่านมา แต่อย่างไรก็ตามยังขึ้นอยู่กับเส้นทางแผนที่ Global.asax ของคุณเนื่องจากคุณอาจเพิ่มหรือแก้ไขพารามิเตอร์เพื่อให้เหมาะกับสิ่งที่คุณต้องการ
เช่น.
Global.asax
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
//new { controller = "Home", action = "Index", id = UrlParameter.Optional
new { controller = "Home", action = "Index", id = UrlParameter.Optional,
extraParam = UrlParameter.Optional // extra parameter you might need
});
}
จากนั้นพารามิเตอร์ที่คุณต้องผ่านจะเปลี่ยนเป็น:
return RedirectToAction( "Main", new RouteValueDictionary(
new { controller = controllerName, action = "Main", Id = Id, extraParam = someVariable } ) );