我正在尝试在orchard cms应用程序中添加一个aspx页面。我已将我的aspx页面放在Orchard.Web Web应用程序的/Web/Test.aspx文件夹中。注意:我现在正在使用果园的来源。我还在配置中的system.webServer标记中添加了必需的处理程序,如此post中所公开的那样。目前正在获取“无法找到资源。”
以下是我的web配置在system.webServer标记周围的样子。
<configuration>
<system.webServer>
<handlers accessPolicy="Script">
<!-- already listed, not added by me -->
<clear/>
<!-- added by me -->
<add name="ASPX" path="*.aspx" verb="*" type="System.Web.UI.PageHandlerFactory" preCondition="integratedMode" requireAccess="Script">
<!-- already listed, not added by me -->
<add name="NotFound" path="*" type="System.Web.HttpNotFoundHandler" preCondition="integratedMode" requireAccess="Script"/>
</handlers>
</system.webServer>
</configuration>
我错过了什么?
答案 0 :(得分:0)
删除clear标记和Notfound处理程序,然后重试。