0

如何动态加载部分视图?我尝试使用如下查询字符串,但运行时出错。

我的代码:

@Html.Partial("_Sample?id=3")
4

1 回答 1

1

您可以执行以下操作:

@Html.Action("Sample", "Users", new { UserId = 1 })

在你的UsersController

[ChildActionOnly]
public ActionResult Sample(int UserId) 
{
    // do stuff here
}
于 2013-05-18T13:55:51.190 回答