Site.Master 和 ASP.NET MVC 的问题
我正在尝试使我的网站母版页(views/shared/site.master
)成为强类型。
例如。 Inherits="TestProject.Mvc.Views.Shared.Site"
我似乎无法完成这项工作。 一旦我将 site.master 页面设置为强类型,Visual Studio 似乎就“松动”了 <%= Html.XXX %>
的内容。 此外,当我尝试显示默认索引路由时,页面会抛出错误。
SiteMasterViewData 类存在于views/shared/ 文件夹中,并已通过以下方式包含在母版页的顶部。
<%@ Import Namespace="TestProject.Mvc.Views.Shared"%>
可以这样做吗? 有一个更好的方法吗?
i'm trying to make my site master page (views/shared/site.master
) strongly typed.
eg. Inherits="TestProject.Mvc.Views.Shared.Site"
I can't seem to get this work. Once i make the site.master page strongly, typed, Visual Studio seems to 'loose' what <%= Html.XXX %>
is. Also, the page throws an error when i try to display the default index route.
The SiteMasterViewData class exists in the views/shared/ folder and has been included at the top of the master page via..
<%@ Import Namespace="TestProject.Mvc.Views.Shared"%>
Can this be done? is there a better way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该死 - 找到了我自己的答案。
ASP.NET MVC v1 中的所有母版页。 需要继承自:
所以如果你想强类型化它,你可以这样做。
HTH 的其他人:)
Damn - found my own answer.
All masterpages in the ASP.NET MVC v1. need to inherit from:
so if u want to strongly type it, you can do this.
HTH's other peeps :)