Site.Master 和 ASP.NET MVC 的问题

发布于 2024-07-16 14:23:52 字数 452 浏览 2 评论 0原文

我正在尝试使我的网站母版页(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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花海 2024-07-23 14:23:52

该死 - 找到了我自己的答案。

ASP.NET MVC v1 中的所有母版页。 需要继承自:

<%@ Master 
    Language="C#" 
    Inherits="System.Web.Mvc.ViewMasterPage" %>

所以如果你想强类型化它,你可以这样做。

<%@ Master 
    Language="C#" 
    Inherits="System.Web.Mvc.ViewMasterPage<SiteMasterViewData>" %>

HTH 的其他人:)

Damn - found my own answer.

All masterpages in the ASP.NET MVC v1. need to inherit from:

<%@ Master 
    Language="C#" 
    Inherits="System.Web.Mvc.ViewMasterPage" %>

so if u want to strongly type it, you can do this.

<%@ Master 
    Language="C#" 
    Inherits="System.Web.Mvc.ViewMasterPage<SiteMasterViewData>" %>

HTH's other peeps :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文