高 我正在尝试让一个 http 处理程序在我的本地计算机上的 iis 7.5 中工作。在 Visual Studio iis 的模式下,我的处理程序使用设置为的 web 配置工作。
<httpHandlers>
<add verb="GET" path="ShowImages.ashx" type="achangeoftack_new_web.ShowImages" />
</httpHandlers>
但是在部署时它会引发错误,所以我将其设置为
<system.webServer>
<modules runAllManagedModulesForAllRequests="true" />
<handlers>
<add name="ShowImages.ashx" verb="GET" path="~/ShowImages.ashx" type="achangeoftack_new_web.ShowImages" />
</handlers>
<validation validateIntegratedModeConfiguration="true" />
但我仍然没有得到处理程序工作的运气。我想我已经尝试了一切,现在我开始拔头发了。