如何动态加载局部视图?我尝试使用querystring,如下所示,但运行时出错。
我的代码:
@Html.Partial("_Sample?id=3")
答案 0 :(得分:1)
您可以执行以下操作:
@Html.Action("Sample", "Users", new { UserId = 1 })
在您的UsersController
:
[ChildActionOnly]
public ActionResult Sample(int UserId)
{
// do stuff here
}