IIS7 で ASP.NET 用のハンドラーまたはモジュールを追加する必要があるたびに、指示では常に、それを と の 2 つのセクションに組み込むように指示されsystem.web
ますsystem.webserver
。
<system.web>
<httpHandlers>
</httpHandlers>
<httpModules>
</httpModules>
</system.web>
この:
<system.webServer>
<modules>
</modules>
<handlers>
</handlers>
</system.webServer>
これらの 2 つのセクションの違いは何ですか?
さらに、セクションに追加しないとsystem.web
、Visual Studio 2008 デバッガーも正しく動作しません。