我正在尝试实现MVC自定义基本视图页面,以“覆盖”User
属性类型。这将使我的CustomPrincipal
类型可以在任何视图中访问。
搜索网络后,我找到了Phil Haack's instructions for implementing a custom base view page。我按照说明完全按照说明进行操作,但在访问视图中的属性时遇到了问题。
当我打开一个视图时,任何以前的Html帮助程序操作都带有蓝色,波浪线的下划线。当我将光标放在@Html
部分上时,它会显示错误:
“Html含糊不清,从名称空间或类型'System.Web.WebPages,System.Web.Mvc'中导入。”
现在,我理解为什么我收到这条消息,但我不明白如何修复它。我不知道为什么这很重要,但是当前的应用程序是在Visual Basic中创建的。作为辅助测试,我在C#中创建了另一个MVC应用程序,并尝试实现自定义基本视图页面。在C#应用程序中它工作得很好。我可以在视图中访问我的自定义属性。
我已经在网上搜索这个问题的答案,但到目前为止还没有找到任何答案。还有其他人遇到过类似的问题吗?
作为参考,我在下面添加了自定义基本视图页面~/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()
{
}
}
}
〜/查看/ 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>
答案 0 :(得分:4)
您需要提供2个版本的WebViewPage,一个通用的非泛型。
public class BaseViewPage<TModel> : WebViewPage<TModel>
{
}
public class BaseViewPage : WebViewPage
{
}