快速回顾:我有一个汽车网站,我有一个简单的ActionResult授权每个有权访问该控制器的用户都将拥有 1 辆汽车,无论是宝马、本田、福特还是起亚,因此一旦他们登录,他们就会看到自动制造汽车。我已经设置了 PartialView 但我的问题是如何从 ActionResult 调用 PartialView 并将其放入视图中的 DIV 中?
[Authorize]
public ActionResult Mycars()
{
// How can I return a PartialView here and put it inside a DIV like
// the partialview is called "Mymakes" and its a PartialViewResult
// I just can't seem to put it inside a DIV from here
return View();
}
如前所述,PartialViewResult完美运行我已经使用 Ajax.BeginForm 对其进行了测试,现在只是尝试在 ActionResult 中自动呈现它,任何提示都会很棒!