.NET isapi 捕获 ASP 文件

发布于 2024-07-10 18:50:38 字数 371 浏览 6 评论 0原文

我需要在我的 ASP.NET 站点中提供一些 .asp 页面。

这个 ASP.NET 站点有一个处理程序,允许我们从数据库中提供页面,而不是在磁盘(.asp 文件所在的位置)上查找它们。

问题似乎是 .NET isapi (C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspnet_isapi.dll) 正在捕获我的请求...此时,它会转到数据库但找不到文件。

我的问题:为什么 ASP.NET 会捕获我的请求? 我认为它应该进来并使用正确的 .asp 扩展名映射(C:\WINDOWS\system32\inetsrv\asp.dll)。

有没有办法告诉 ASP.NET 不理会 .asp 文件?

I need to serve up a few .asp pages from within my ASP.NET site.

This ASP.NET site has a handler that allows us to serve up pages out of the database instead of finding them on disk (where the .asp files are located).

The problem appears to be that the .NET isapi (C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspnet_isapi.dll) is catching my request... at that point, it is going to the database and not finding the file.

My question: why is ASP.NET catching my request? I would think it should come in and use the proper extension mapping for .asp (C:\WINDOWS\system32\inetsrv\asp.dll).

Is there a way to tell ASP.NET to leave the .asp files alone?

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

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

发布评论

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

评论(2

烂人 2024-07-17 18:50:38

一种替代方法是设置一个只能执行 .asp 且不支持 asp.net 的虚拟目录。

one alternative is to set up a virtual directory which only can execute .asp and without asp.net support.

话少心凉 2024-07-17 18:50:38

听起来您的应用程序配置中有一个通配符脚本映射,将所有请求转发到 aspnet_isapi.dll 中。 .asp 是否映射到 asp.dll?

It sounds like you have a wild card script mapping in your application configuration forwarding all requests into the aspnet_isapi.dll. Is the a .asp mapping to asp.dll?

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