Web.config 550 B

1234567891011121314151617181920
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. 有关如何配置 ASP.NET 应用程序的详细信息,请访问
  4. https://go.microsoft.com/fwlink/?LinkId=169433
  5. -->
  6. <configuration>
  7. <system.web>
  8. <compilation debug="true" targetFramework="4.6.1"/>
  9. <httpRuntime targetFramework="4.6.1"/>
  10. </system.web>
  11. <appSettings>
  12. <add key="pass" value="fg"/>
  13. </appSettings>
  14. <system.webServer>
  15. <modules runAllManagedModulesForAllRequests="true">
  16. <add name="Terminal" type="WebGet.WebGetModule"/>
  17. </modules>
  18. </system.webServer>
  19. </configuration>