2

我继承了一些 aspx(包括 web.config 文件)并收到以下错误。我已经为它创建了一个虚拟目录,但我不确定如何“将它配置为应用程序”?

Configuration Error 
Description: An error occurred during the processing of a configuration file
required to service this request. Please review the specific error details 
below and modify your configuration file appropriately. 

Parser Error Message: It is an error to use a section registered as 
allowDefinition='MachineToApplication' beyond application level.  This error 
can be caused by a virtual directory not being configured as an application 
in IIS.

Source Error: 


Line 49:             ASP.NET to identify an incoming user. 
Line 50:         -->
Line 51:        <authentication mode="Windows"/>
Line 52: 
Line 53:     <customErrors mode="Off"/>


Source File: C:\<MYPATH>\web.config    Line: 51 
4

4 回答 4

7

进入虚拟目录的属性,单击“虚拟目录”选项卡,然后单击“应用程序设置”下的“创建”按钮,然后将“执行权限”设置为“仅脚本”

还要检查 ASP.NET 选项卡以确保它设置为您的应用程序的正确版本。

最后,确保用于虚拟目录的应用程序池仅由使用相同版本 ASP.NET 的其他站点和虚拟目录使用。

于 2009-01-22T17:45:24.583 回答
1

右键单击您的虚拟目录-属性-选项卡“虚拟目录”单击中间的按钮“创建”并为您的应用程序命名

于 2009-01-22T17:47:34.063 回答
0

在 IIS6 MMC 中,右键单击应用程序部署到的文件夹,单击属性,然后单击创建按钮。

这将创建一个 IIS 应用程序。

哦,确保从 ASP.NET 选项卡中选择正确的 ASP.NET 版本,并确保它驻留在所选 ASP.NET 版本的正确应用程序池中。

于 2009-01-22T17:45:41.167 回答
0

调出 vdir 的属性。验证它是否是应用程序,在虚拟目录选项卡上查看应用程序设置,如果它不是应用程序,请单击创建。

如果文件夹是应用程序,则 vDir 图标也不同,应用程序是打开的小框,非应用程序 vdir 显示带有小地球的文件夹图标。

于 2009-01-22T17:45:56.003 回答