Mar 13, 2013, 9:59 AM
Ext.NET controls will not render in IE9
Hey guys,
I have an issue with IE9 (did not check with older versions). The ext.net controls will not render at all.
After doing some basic debugging I found out that all the ext.axd scripts are rendered with weird characters in IE (something to do with the encoding I guess?).
Here is the configuration i have on the page resource manager
and here are the relevant parts on my web.config file
I have an issue with IE9 (did not check with older versions). The ext.net controls will not render at all.
After doing some basic debugging I found out that all the ext.axd scripts are rendered with weird characters in IE (something to do with the encoding I guess?).
Here is the configuration i have on the page resource manager
<ext:ResourceManager runat="server" RenderScripts="Embedded" RenderStyles="Embedded" ClientIDMode="Static" InitScriptMode="Inline" ScriptMode="Release"/>
and here are the relevant parts on my web.config file
<extnet theme="Gray" locale="el-GR" directMethodNamespace="PF.Direct"/>
...
<pages enableSessionState="true" validateRequest="true" >
.....
<controls>
<add assembly="Ext.Net" namespace="Ext.Net" tagPrefix="ext" />
</controls>
....
</pages>
<httpHandlers>
<add path="*/ext.axd" verb="*" type="Ext.Net.ResourceHandler" validate="false" />
....
</httpHandlers>
<httpModules>
<add name="DirectRequestModule" type="Ext.Net.DirectRequestModule, Ext.Net" />
...
</httpModules>
<system.webServer>
<modules>
....
<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.ResourceHandler" />
..
</handlers>
...
</system.webServer>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" />
<bindingRedirect oldVersion="1.0.0.0-4.5.9" newVersion="4.5.10" />
</dependentAssembly></assemblyBinding>
</runtime>
Last edited by infotex; Mar 13, 2013 at 11:24 AM.