MVC3 中没有母版页的渲染视图
我的网站上有一些视图需要包含在起始页上。但是,仅使用 Html.Renderaction 即可呈现母版页和整个 shebang。
我将如何渲染内容?
I have a few views on my website that i need to include on a start page. However, just using Html.Renderaction renders the master page and the whole shebang.
How would i go about just rendering the content?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有几种方法。
确保您从控制器返回 PartialView。
return PartialView("MyView");
或者您可以在视图内将 Layout 设置为 String.Empty 或 null。
There are a few ways.
Make sure your returning PartialView from your Controller.
return PartialView("MyView");
Or you can set Layout to String.Empty or null inside the view.