Optimize ASP.NET HTTP Connection Limit
Mads has a nice post on optimizing ASP.NET to utilize more than its default of 2 concurrent web connections. Here’s the relevant config info:
<system.net>
<connectionManagement>
<add address="*" maxconnection="8"/>
</connectionManagement>
</system.net>