我有一个ASP.net项目,我已经将源文件复制并粘贴到另一台计算机上,但当我尝试在这台计算机上运行它们时,localhost:
Error Summary
HTTP Error 500.19 - Internal Server Error
The requested page cannot be accessed because the related configuration data for the page is invalid.
Detailed Error Information
Module IIS Web Core
Notification BeginRequest
Handler Not yet determined
Error Code 0x80070021
Config Error This configuration section cannot be used at this path. This happens when the section is locked at a parent level. Locking is either by default (overrideModeDefault="Deny"), or set explicitly by a location tag with overrideMode="Deny" or the legacy allowOverride="false".
Config File \\?\C:\inetpub\wwwroot\myproj\myproj\web.config
Requested URL http://localhost:80/myproj/myproj/default.aspx
Physical Path C:\inetpub\wwwroot\myproj\myproj\default.aspx
Logon Method Not yet determined
Logon User Not yet determined
Config Source
96: </modules>
97: <handlers>
98: <remove name="WebServiceHandlerFactory-Integrated"/>
我将它从IIS6移到IIS7,如果这有帮助的话。
答案 0 :(得分:3)
您好像没有使用IIS管理工具将文件夹转换为应用程序/虚拟目录。在iis.net上有逐步instructions on Technet和overview of Sites, Applications and Virtual Directories。
信息的一部分:
此配置部分不能 用在这条路上。这发生在 该部分被锁定在父母身上 水平。默认情况下锁定 (overrideModeDefault =“Deny”)或设置 由位置标记明确表示 overrideMode =“拒绝”或遗产 有的allowOverride = “假”。
似乎表明该文件夹未设置为虚拟目录/应用程序,因为<handlers>
部分应该是可更改的。