每次我必须为ASP添加一个处理程序或模块。NET和IIS7,说明总是告诉我把它合并成两个部分:系统。Web和system.webserver。
<system.web>
<httpHandlers>
</httpHandlers>
<httpModules>
</httpModules>
</system.web>
这:
<system.webServer>
<modules>
</modules>
<handlers>
</handlers>
</system.webServer>
这两部分有什么不同?
另外,如果我不把它加入系统。web部分,我的Visual Studio 2008调试器也不能正常工作。