<?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>
时间: 2024-10-12 13:12:34