在控制器中返回通用动作post方法mvc

时间:2016-06-14 10:11:32

标签: c# asp.net-mvc

我对参考动作帖子的重定向感兴趣 我希望它与通用

类似
        ActionResult action = new DashboardController().Index(3);
        return action;

我想要这样的代码

  

因为我使用POST重定向到页面   我无法使用此

return RedirectToAction(actionName, controllerName);

Example

        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);
            }

链接可以帮助也许答案 Link 1 link 2

我提前为我的英语道歉

0 个答案:

没有答案