我在我的web.config文件中配置了一个HttpHandler,如下所示:
<add verb="GET,HEAD,POST" path="TinyMCE.ashx" type="Moxiecode.TinyMCE.Web.HttpHandler,Moxiecode.TinyMCE" />
当我部署到IIS 7时,处理程序停止工作(404).
我需要做什么来使这项工作?
解决方法
对于IIS7,HttpHandlers的注册不同于以前版本的IIS.具体来说,您在名为< system.webServer>< handlers>的web.config部分中注册处理程序.不在< httpHandlers> ;. 参见
this question例子.