gpt4 book ai didi

asp.net-mvc - 实现自定义 MVC 基本 View 页面

转载 作者:行者123 更新时间:2023-12-03 23:15:11 24 4
gpt4 key购买 nike

我正在尝试实现 MVC 自定义基本 View 页面以“覆盖”User属性(property)种类。这将使我的 CustomPrincipal类型可在任何 View 中访问。

在网上搜索后,我找到了Phil Haack's instructions for implementing a custom base view page .我完全按照说明进行操作,但是在访问 View 中的属性时遇到了问题。

当我打开一个 View 时,任何以前的 Html 助手操作都带有蓝色波浪线下划线。当我将光标放在 @Html 上时部分,它揭示了错误:

“Html 不明确,是从命名空间或类型 'System.Web.WebPages, System.Web.Mvc' 导入的。”

现在,我明白为什么我会收到这条消息,但我不明白如何解决它。我不知道为什么这很重要,但当前的应用程序是在 Visual Basic 中创建的。作为辅助测试,我在 C# 中创建了另一个 MVC 应用程序并尝试实现自定义基本 View 页面。在 C# 应用程序中它工作得很好。我可以从 View 中访问我的自定义属性。

我在网上搜索了这个问题的答案,但到目前为止还没有找到任何东西。有没有其他人遇到过类似的问题?

作为引用,我包含了我的自定义基本 View 页面和 ~/Views/web.config以下:

BaseViewPage

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Web.Mvc;
using CCInfoController;

namespace CCInfo.Web.Mvc
{
public class BaseViewPage<TModel> : WebViewPage<TModel>
{
public new CustomPrincipal User
{
get
{
return base.User as CustomPrincipal;
}
}

public override void Execute()
{
}
}
}

~/Views/web.config
<configuration>
<configSections>
<sectionGroup name="system.web.webPages.razor"
type="System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup,
System.Web.WebPages.Razor, Version=1.0.0.0, Culture=neutral,
PublicKeyToken=31BF3856AD364E35">
<section name="host"
type="System.Web.WebPages.Razor.Configuration.HostSection,
System.Web.WebPages.Razor, Version=1.0.0.0, Culture=neutral,
PublicKeyToken=31BF3856AD364E35" requirePermission="false" />
<section name="pages"
type="System.Web.WebPages.Razor.Configuration.RazorPagesSection,
System.Web.WebPages.Razor, Version=1.0.0.0, Culture=neutral,
PublicKeyToken=31BF3856AD364E35" requirePermission="false" />
</sectionGroup>
</configSections>

<system.web.webPages.razor>
<host factoryType="System.Web.Mvc.MvcWebRazorHostFactory,
System.Web.Mvc, Version=3.0.0.0, Culture=neutral,
PublicKeyToken=31BF3856AD364E35" />
<pages pageBaseType="CCInfo.Web.Mvc.BaseViewPage">
<namespaces>
<add namespace="System.Web.Mvc" />
<add namespace="System.Web.Mvc.Ajax" />
<add namespace="System.Web.Mvc.Html" />
<add namespace="System.Web.Routing" />
<add namespace="System.Web.WebPages"/>
<add namespace="CCInfoController" />
</namespaces>
</pages>
</system.web.webPages.razor>
...
</configuration>

最佳答案

您需要提供 2 个版本的 WebViewPage,通用和非通用。

public class BaseViewPage<TModel> : WebViewPage<TModel>
{
}


public class BaseViewPage : WebViewPage
{
}

关于asp.net-mvc - 实现自定义 MVC 基本 View 页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17195555/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com