.NET isapi 捕获 ASP 文件
我需要在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一种替代方法是设置一个只能执行 .asp 且不支持 asp.net 的虚拟目录。
one alternative is to set up a virtual directory which only can execute .asp and without asp.net support.
听起来您的应用程序配置中有一个通配符脚本映射,将所有请求转发到 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?