标签:
<?xml version="1.0"?> <configuration> <!--IIS经典模式下使用--> <system.web> <httpHandlers> <add path="request.aspx" verb="*" type=" Bll.Handler.Test"/> <add path="test.aspx" verb="*" type=" Bll.Handler.Test"/> </httpHandlers> </system.web> <!--IIS集成模式下使用--> <!--<system.webServer> <handlers> <add name="request" path="request.aspx" verb="*" type=" Bll.Handler.Test"/> <add name="test" path="test.aspx" verb="*" type=" Bll.Handler.Test"/> </handlers> </system.webServer>--> </configuration>
asp.net web.config 经典模式和集成模式相关配置
标签:
原文地址:http://www.cnblogs.com/foreverfendou/p/5804124.html