在 ASP.NET MVC 3 中跨区域共享视图的最佳方式
我有我的主区,我有一个会员区,主区的一些内容可以在会员区使用。这两个区域有自己的_Layout(MasterPage)。
如何在 DRY 之后的两个区域中拥有相同的内容?
I have my main area and i have a member area, some of the content in the main area can be used in the member area. The two area's have their own _Layout(MasterPage).
How can i have the same content in both areas following DRY?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
~/Views/Shared
文件夹来存储应用程序不同部分之间的视图(布局、部分、编辑器和显示模板)。You could use the
~/Views/Shared
folder for storing views (layouts, partials, editor and display templates) between different parts of the application.