本文介绍了无法使用自定义HttpModule在IIS中运行ASP网站的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我创建了一个自定义HttpModule来帮助进行重写.当我用完VS时,它运行良好,但是一旦我尝试在IIS上运行它,就会出现以下错误:
由于Web服务器上的ISAPI和CGI限制列表设置,因此无法提供您请求的页面.
在此先感谢您.
Hi,
I have created a custom HttpModule to help with re-writing. It runs fine when I run out of VS but as soon as I try run it on IIS I get the following error:
The page you are requesting cannot be served because of the ISAPI and CGI Restriction list settings on the Web server.
Thanks in advance.
推荐答案
<system.webserver>
<modules runallmanagedmodulesforallrequests="true">
<add name="NameOfHttpModule" type="TypeOfHttpModule" />
</modules>
</system.webserver>
这应该可以解决您的问题.
This should resolve your problem.
这篇关于无法使用自定义HttpModule在IIS中运行ASP网站的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!