如何在IIS7.5中启用ASP经典

发布于 2024-12-29 22:31:15 字数 596 浏览 2 评论 0原文

我在 Windows 7 中运行 IIS 7.5,并且已经进入“打开或关闭 Windows 功能”并在“Internet 信息服务/万维网服务/应用程序开发功能”中启用了 ASP。完成此操作后,我开始收到 HTTP 404 错误:

由于扩展名,无法提供您请求的页面
配置。如果页面是脚本,请添加处理程序。如果文件应该是
下载后,添加 MIME 映射。

所以我认为这意味着我需要在处理程序映射中添加到 *.asp 的映射,并将处理程序映射到 C:\Windows\System32\inetsrv\asp.dll。但是当我尝试加载页面时,我收到服务器错误消息:

无法加载类型“C:\Windows\system32\inetsrv\asp.dll”。

有谁知道这里发生了什么或如何处理这个问题?

我应该提到的另一件事是,我已经在应用程序池中启用了 32 位应用程序,并将 ASP 设置为向浏览器发送错误,但这些都没有解决问题或为我提供更多信息。

请注意,这是 ASP Classic,而不是 ASP.NET,ASP.NET 对我来说工作得很好。

I am running IIS 7.5 in Windows 7 and have already gone into "Turn Windows features on or off" and enabled ASP in "Internet Information Services/World Wide Web Service/application Development Features". Once I did that I started getting an HTTP 404 error saying:

The page you are requesting cannot be served because of the extension
configuration. If the page is a script, add a handler. If the file should be
downloaded, add a MIME map.

So I took this to mean that I needed to add a mapping to *.asp in the Handler mappings and the handler is mapped to C:\Windows\System32\inetsrv\asp.dll. But when I try to load the page I get a server error saying:

Could not load type 'C:\Windows\system32\inetsrv\asp.dll'.

Does anyone know what is going on here or how to handle this?

One other thing I should mention is that I have already enabled 32-Bit application in my Application pool and set ASP to send errors to browser, but neither of those things has resolved the issue or given me more information.

Please note this is ASP Classic not ASP.NET, ASP.NET is working just fine for me.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

绮烟 2025-01-05 22:31:15
  • 转到控制面板,
  • 单击程序功能
  • ,打开和关闭窗口,
  • 转到
  • 万维网服务下的互联网服务,检查 asp.net 和其他,

单击“确定”,您的网站将正确加载。

  • Go to control panel
  • click program features
  • turn windows on and off
  • go to internet services
  • under world wide web services check the asp.net and others

Click ok and your web sites will load properly.

卖梦商人 2025-01-05 22:31:15

如果您在 Windows Server 2012 上运行 IIS 8,则需要执行以下操作:

  1. 单击服务器管理器
  2. 添加角色和功能
  3. 单击下一步,然后基于角色
  4. 选择您的服务器
  5. 在树中选择 Web 服务器(IIS) >>>网络服务器>>应用开发>> ASP
  6. Next 并

从那时起完成,您的应用程序应该开始运行

If you are running IIS 8 with windows server 2012 you need to do the following:

  1. Click Server Manager
  2. Add roles and features
  3. Click next and then Role-based
  4. Select your server
  5. In the tree choose Web Server(IIS) >> Web Server >> Application Development >> ASP
  6. Next and finish

from then on your application should start running

不必在意 2025-01-05 22:31:15

事实证明,如果我在网站和应用程序级别添加处理程序映射,一切都会完美运行。我只是在服务器级别添加它们,因此 IIS 不知道将 asp 页面映射到 IsapiModule。

因此,要解决此问题,请转到要添加应用程序的网站,然后双击“处理程序映射”。单击“添加脚本映射”并输入以下信息:

RequestPath: *.asp
可执行文件:C:\Windows\System32\inetsrv\asp.dll
名称:Classic ASP(可以是您想要的任何名称)

So it turns out that if I add the Handler Mappings on the Website and Application level, everything works beautifully. I was only adding them on the server level, thus IIS did not know to map the asp pages to the IsapiModule.

So to resolve this issue, go to the website you want to add your application to, then double click on Handler Mappings. Click "Add Script Map" and enter in the following information:

RequestPath: *.asp
Executable: C:\Windows\System32\inetsrv\asp.dll
Name: Classic ASP (this can be anything you want it to be

鹤仙姿 2025-01-05 22:31:15

我在这里找到了一些详细说明: http://digitallibraryworld.com/?p=6

关键部分建议似乎是,如果您已将应用程序池配置为运行 32 位应用程序,则不要使用 64 位 ASP.DLL(在 system32 中找到)(而是使用 32 位 ASP.DLL)。

使用以下设置添加脚本映射:

请求路径: *.asp
可执行文件: C:\Windows\system32\inetsrv\asp.dll
名称:任何你想要的。我将我的命名为 Classic ASP

上面的可执行文件是您的 asp 脚本的 64 位 ASP 处理程序。如果您希望 ASP 脚本在 32 位环境中处理,则需要使用以下位置的可执行文件:C:\Windows\SysWOW64\inetsrv\asp.dll

当然,如果您不需要加载任何 32 位库(或数据提供程序等),只需运行 64 位 ASP.DLL 让您的生活更轻松!

I found some detailed instructions here: http://digitallibraryworld.com/?p=6

The key piece of advice seems to be, don't use the 64-bit ASP.DLL (found in system32) if you've configured the app pool to run 32-bit applications (instead, use the 32-bit ASP.DLL).

Add a script map using the following setting:

Request Path: *.asp
Executable: C:\Windows\system32\inetsrv\asp.dll
Name: whatever you want. I named my Classic ASP

The executable above is 64 BIT ASP handler for your asp script. If you want your ASP script to be handled in 32 bit environment, you need to use executable from this location: C:\Windows\SysWOW64\inetsrv\asp.dll.

Of course, if you don't need to load any 32-bit libraries (or data providers, etc.), just make your life easier by running the 64-bit ASP.DLL!

丢了幸福的猪 2025-01-05 22:31:15

如果您在 Windows Server 2008 上遇到上述问题,您可能需要启用 ASP。为此,请按照下列步骤操作:

添加“应用程序服务器”角色

  1. 单击“开始”,指向“控制面板”,单击“程序”,然后单击“打开或关闭 Windows 功能”。
  2. 右键单击服务器管理器,选择添加角色。
  3. 在“添加角色向导”页面上,选择“应用程序服务器”,单击三次“下一步”,然后单击“安装”。 Windows Server 安装新角色。

然后,添加“Web服务器”角色:

  1. Web服务器角色(IIS):在ServerManager的角色中,如果Web服务器(IIS)角色不存在则添加它。
  2. 在 Web 服务器 (IIS) 角色下添加以下角色服务:ApplicationDevelopment:ASP、ApplicationDevelopment:ISAPI 扩展、Security:Request Filtering。

更多信息:

If you get the above problem on windows server 2008 you may need to enable ASP. To do so, follow these steps:

Add an 'Application Server' role:

  1. Click Start, point to Control Panel, click Programs, and then click Turn Windows features on or off.
  2. Right-click Server Manager, select Add Roles.
  3. On the Add Roles Wizard page, select Application Server, click Next three times, and then click Install. Windows Server installs the new role.

Then, add a 'Web Server' role:

  1. Web Server Role (IIS): in ServerManager, Roles, if the Web Server (IIS) role does not exist then add it.
  2. Under Web Server (IIS) role add role services for: ApplicationDevelopment:ASP, ApplicationDevelopment:ISAPI Exstensions, Security:Request Filtering.

More info:
http://www.iis.net/learn/application-frameworks/running-classic-asp-applications-on-iis-7-and-iis-8/classic-asp-not-installed-by-default-on-iis

蘑菇王子 2025-01-05 22:31:15

添加经过身份验证的用户

使经过身份验证的用户组可以访问该文件。右键单击您的虚拟目录,并授予该组对经过身份验证的用户的读/写访问权限。

我在 Windows 10 机器上遇到问题。

Add Authenticated Users

Make the file accessible to the Authenticated Users group. Right click your virtual directory and give the group read/write access to Authenticated Users.

I faced issue on windows 10 machine.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文