Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何删除asp.net mvc4中部分页面中的页眉和页脚。我如何识别 Visual Studio 中的部分页面。我必须在 site.css 中进行哪些更改才能删除页眉和页脚。我希望你能理解我的问题。
问候, 斯里尼瓦斯
要使用部分视图,您无需在样式表中进行任何特定修改。而不是返回一个视图,只返回一个局部视图:
return PartialView("ThePartialViewsName");
要创建局部视图,只需在“添加视图”对话框中选中标记为“创建为局部视图”的框。