Created
August 16, 2011 02:08
-
-
Save xiangjian/1148299 to your computer and use it in GitHub Desktop.
extnet for for iis 7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<system.webServer> | |
<validation validateIntegratedModeConfiguration="false"/> | |
<modules runAllManagedModulesForAllRequests="true"> | |
<add | |
name="DirectRequestModule" | |
preCondition="managedHandler" | |
type="Ext.Net.DirectRequestModule, Ext.Net" | |
/> | |
</modules> | |
<handlers> | |
<add | |
name="DirectRequestHandler" | |
verb="*" | |
path="*/ext.axd" | |
preCondition="integratedMode" | |
type="Ext.Net.ResourceManager" | |
/> | |
</handlers> | |
</system.webServer> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment