我正在尝试映射由.net处理的经典asp页面的请求,以便它通过自定义httpmodule运行。
在 IIS 中,我已将 asp 请求重新映射到 aspnet_isapi.dll - 我确定我做对了
现在在我的测试应用程序中,我收到了这个错误:
Server Error in '/TestASPRedirect' Application.
--------------------------------------------------------------------------------
This type of page is not served.
Description: The type of page you have requested is not served because it has been explicitly forbidden. The extension '.asp' may be incorrect. Please review the URL below and make sure that it is spelled correctly.
Requested URL: /testaspredirect/test.asp
在线搜索此错误显示很多人在使用 cassini 时遇到问题,但这并不真正相关,我在 XP 开发机器上的 IIS 5.1 上对此进行了测试,并且在 IIS6 上进行了测试也得到了相同的错误。
我已按照说明添加和注册 httphandler(请参阅http://support.microsoft.com/default.aspx?scid=kb;en-us;Q308001),但我不知道在 ProcessRequest 例程中放入什么以确保请求被传递。什么是默认的 .net httphandler,我可以在 web.config 中映射到这个吗?:所以类似于:
<httpHandlers>
<add verb="*" path="*.asp" type="standard.nethttphandler"/>
</httpHandlers>
我如何告诉 asp.net 它需要传递 ASP 请求而不是阻塞?