暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Web.config.transform 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <configuration>
  2. <configSections>
  3. <section name="extnet" type="Ext.Net.GlobalConfig" requirePermission="false" />
  4. </configSections>
  5. <extnet theme="Triton" licenseKey="** Ext.NET LICENSE KEY HERE **" initScriptMode="Linked" />
  6. <system.web>
  7. <!-- This httpHandlers config only required if using IIS6 (or lower) -->
  8. <!--
  9. <httpHandlers>
  10. <add path="*/ext.axd" verb="*" type="Ext.Net.ResourceHandler" validate="false" />
  11. </httpHandlers>
  12. -->
  13. <!-- This httpModules config only required if using IIS6 (or lower) -->
  14. <!--
  15. <httpModules>
  16. <add name="DirectRequestModule" type="Ext.Net.DirectRequestModule, Ext.Net" />
  17. </httpModules>
  18. -->
  19. <pages>
  20. <controls>
  21. <add assembly="Ext.Net" namespace="Ext.Net" tagPrefix="ext" />
  22. </controls>
  23. <namespaces>
  24. <add namespace="Ext.Net"/>
  25. </namespaces>
  26. </pages>
  27. </system.web>
  28. <system.webServer>
  29. <validation validateIntegratedModeConfiguration="false" />
  30. <handlers>
  31. <add name="DirectRequestHandler" verb="*" path="*/ext.axd" preCondition="integratedMode" type="Ext.Net.ResourceHandler" />
  32. </handlers>
  33. <modules>
  34. <add name="DirectRequestModule" preCondition="managedHandler" type="Ext.Net.DirectRequestModule, Ext.Net" />
  35. </modules>
  36. </system.webServer>
  37. </configuration>