我正在尝试使用MVCContrib的便携式区域。 一般来说,这些工作很好,似乎是在Web项目之间共享控制器\视图的好方法。
我遇到的唯一问题是Intellisense(特别是HtmlHelper)在强类型视图(即ViewPage)的视图中不起作用。 然而,当视图是一个简单的'ol System.Web.Mvc.ViewPage
时,intellisense确实有效。此处也提出了类似的问题: MvcContrib Portable Areas View Intellisense?
但这些建议似乎没有任何区别。
我正在使用MVC 2,可移植区域在MVCContrib示例代码中的自己的类库中。 我还想补充一点,MVC示例代码给了我相同的行为,如果我更改示例项目以使视图页面强烈输入,则intellisense停止工作。
其他人是否有同样的问题?
有谁知道原因和解决方案?
我的Views文件夹中的web.config如下:
<?xml version="1.0"?>
<configuration>
<system.web>
<httpHandlers>
<add path="*" verb="*"
type="System.Web.HttpNotFoundHandler"/>
</httpHandlers>
<!--
Enabling request validation in view pages would cause validation to occur
after the input has already been processed by the controller. By default
MVC performs request validation before a controller processes the input.
To change this behavior apply the ValidateInputAttribute to a
controller or action.
-->
<pages
validateRequest="false"
pageParserFilterType="System.Web.Mvc.ViewTypeParserFilter, System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"
pageBaseType="System.Web.Mvc.ViewPage, System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"
userControlBaseType="System.Web.Mvc.ViewUserControl, System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<controls>
<add assembly="System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" namespace="System.Web.Mvc" tagPrefix="mvc" />
</controls>
</pages>
</system.web>
<system.webServer>
<validation validateIntegratedModeConfiguration="false"/>
<handlers>
<remove name="BlockViewHandler"/>
<add name="BlockViewHandler" path="*" verb="*" preCondition="integratedMode" type="System.Web.HttpNotFoundHandler"/>
</handlers>
</system.webServer>
</configuration>
答案 0 :(得分:0)
这是VS2010中ReSharper intellisense的一个问题,ReSharper v5.0。 如果我更改我的ReSharper选项(ReSharper-&gt; Options-&gt; Intellisense-&gt; General)以使用Visual Studio intellisense,那么它可以工作!!