1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <configuration>
- <configSections>
- <section name="extnet" type="Ext.Net.GlobalConfig" requirePermission="false" />
- </configSections>
-
- <extnet theme="Triton" licenseKey="** Ext.NET LICENSE KEY HERE **" initScriptMode="Linked" />
-
- <system.web>
- <!-- This httpHandlers config only required if using IIS6 (or lower) -->
- <!--
- <httpHandlers>
- <add path="*/ext.axd" verb="*" type="Ext.Net.ResourceHandler" validate="false" />
- </httpHandlers>
- -->
-
- <!-- This httpModules config only required if using IIS6 (or lower) -->
- <!--
- <httpModules>
- <add name="DirectRequestModule" type="Ext.Net.DirectRequestModule, Ext.Net" />
- </httpModules>
- -->
-
- <pages>
- <controls>
- <add assembly="Ext.Net" namespace="Ext.Net" tagPrefix="ext" />
- </controls>
- <namespaces>
- <add namespace="Ext.Net"/>
- </namespaces>
- </pages>
- </system.web>
- <system.webServer>
- <validation validateIntegratedModeConfiguration="false" />
- <handlers>
- <add name="DirectRequestHandler" verb="*" path="*/ext.axd" preCondition="integratedMode" type="Ext.Net.ResourceHandler" />
- </handlers>
- <modules>
- <add name="DirectRequestModule" preCondition="managedHandler" type="Ext.Net.DirectRequestModule, Ext.Net" />
- </modules>
- </system.webServer>
- </configuration>
|