Every time I have to add a handler or module for ASP.NET w/ IIS7, the instructions always tell me to put it into two places, the system.web and system.webserver.
<system.web>
<httpHandlers>
</httpHandlers>
<httpModules>
</httpModules>
</system.web>
And this:
<system.webServer>
<modules>
</modules>
<handlers>
</handlers>
</system.webServer>
What's the difference between the two?
Added: If I don't add it to my system.web, my VS 2008 debugger also doesn't work correctly.