我对参考动作帖子的重定向感兴趣 我希望它与通用
类似 ActionResult action = new DashboardController().Index(3);
return action;
我想要这样的代码
因为我使用POST重定向到页面 我无法使用此
return RedirectToAction(actionName, controllerName);
public ActionResult generic(string Controller,string Action)
{
Assembly asm = Assembly.GetAssembly(typeof(MvcApplication));
var controlleractionlist = asm.GetTypes()
.Where(type => typeof(Controller).IsAssignableFrom(type));
return typeof(typeof(controlleractionlist).GetProperty(Controller))
.GetProperty(Action);
}
我提前为我的英语道歉