Skip to content

Instantly share code, notes, and snippets.

@xiangjian
Created August 16, 2011 02:08
Show Gist options
  • Save xiangjian/1148299 to your computer and use it in GitHub Desktop.
Save xiangjian/1148299 to your computer and use it in GitHub Desktop.
extnet for for iis 7
<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