MVC儿童行动

时间:2017-05-16 07:18:31

标签: asp.net-mvc

我有一个页面的应用程序,并且有一些dockpanel作为部分视图,它的内容呈现了这样的动作:

Html.RenderAction(ViewData["action"].ToString(), ViewData["controller"].ToString(), new { Index = indexPart});

有时会呈现需要重定向到其他操作的“常规”操作:

TShortCutMenu shortCutMenu = _kwd.TShortCutMenu.FirstOrDefault(x => x.ShortCutMenuID == shortCutID);

return RedirectToAction(shortCutMenu.ActionName, shortCutMenu.ControllerName, new { id = ctrlValue });

现在我当然收到例外情况:“不允许子操作执行重定向操作”。

如何重定向到孩子的另一个动作?

0 个答案:

没有答案