MVC 怎么禁止直接访问PartialView视图

2025-05-19 09:25:45
推荐回答(1个)
回答(1):

[ChildActionOnly]
public ActionResult Index()
{
return PartialView();
}