在iis 8中,原有的web.config中
<system.web> <httpHandlers> <add verb="*" path="*.asyn" type="AsnyHandler"/> </httpHandlers> </system.web>
要改为
<system.webServer> <handlers> <add name="x" verb="*" path="*.asyn" type="AsnyHandler"/> </handlers> </system.webServer>
否则:
无法在集成模式运行!
即使经典模式也无法识别type!!
原文:http://www.cnblogs.com/yy2056/p/4261273.html