Thursday, May 21, 2015

When editing with the web forms designer and using BOTH DevExpress controls and DotNetNuke...

Do not be shocked if the various projects in your solution at /DesktopModules/yourfolderhere/ start ending up with this in their Web.config files...

<handlers>
   <add type="DevExpress.Web.ASPxClasses.ASPxHttpHandlerModule,          DevExpress.Web.v13.1, Version=13.1.9.0, Culture=neutral,          PublicKeyToken=b88d1754d700e49a" verb="GET,POST" path="DX.ashx"          name="ASPxHttpHandlerModule" preCondition="integratedMode"/>
</handlers>

 
 

...and do not be shocked if a version conflict with the same line of code in the root Web.config causes DotNetNuke to fail to serve up .css and .js files. Weird gremlin. Fix the problem by stripping out this addition, not from the room Web.config but from the nested ones. You don't need this stuff, not here.

No comments:

Post a Comment