如何将ViewBag
字符串作为string
传递:
@Html.Partial("'" + @ViewBag.PartialView + "'")
答案 0 :(得分:0)
这是用于调用部分视图的标准代码
public ActionResult ControllerName()
{
//here we give our data & pass into result
return PartialView("SearchPartialView", result);
}
最终调用部分视图
@Html.Partial("ControllerName");