asp.net 在一个站点中同时具有HTML和ASPX网页

slmsl1lt  于 2022-11-19  发布在  .NET
关注(0)|答案(2)|浏览(198)

我有一个运行在IIS 6上的现有网站,只有静态HTML页面。我有一个页面,有人可以通过电子邮件发送他们的信息,但想使用ASP.NET编码此页面。
我以前从来没有混合过HTML和ASP.NET,我想如果我从ASP.NET发布我需要的页面,并将它放在现有网站的根目录下,这将是我所需要的,但当页面试图提交到ASP.NET页面时,我收到了一个错误。
我得到的错误如下:
谢谢你的帮助!

Server Error in '/' Application.
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 44:             ASP.NET to identify an incoming user. 
Line 45:         -->
Line 46:         <authentication mode="Windows"  />
Line 47:         <!--
Line 48:             The <customErrors> section enables configuration

============================================================

k7fdbhmy

k7fdbhmy1#

如果在IIS的虚拟目录中运行ASP.NET,则需要将其配置为应用程序。为此,请执行以下操作:
1.打开IIS管理器(如果“开始”菜单中有“管理工具”,则可以从那里访问IIS)。
1.在左侧的树中,找到您的虚拟目录
1.右键单击该目录,然后选择“属性
1.找到“应用程序名称”字段。
1.如果文本框旁边有一个“创建”按钮,点击它。如果是一个“删除”按钮,那么你应该注解这个答案是错误的。
祝你好运!

hi3rlvi2

hi3rlvi22#

如果你在谷歌上搜索你的错误信息,你会得到很多点击,这些点击应该会为你的问题提供解决方案。
例如herehere

相关问题