This is a migrated thread and some comments may be shown as answers.

[Solved] Controls appears but don't works

1 Answer 73 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Pierre
Top achievements
Rank 1
Pierre asked on 19 Jan 2010, 10:21 PM
Hello,
After moving a web application from Windows Server 2003 and IIS6 to Windows Server 2008 Web Edition and IIS7, (Classic mode), the controls appears when the aspx page is loaded but they don' t fully work. For example, I have an horizontal menu, I can navigate when I click on an item which redirect to a new page, but when I click an item which is aimed to display a submenu... it does not work. 
Rotator, TabStrip does not work either.... 
I have no error message. The page is loaded, but controls don' t work. The same application worked fine in IIS6.
Any help would be greatly appreciated.... Thanks

1 Answer, 1 is accepted

Sort by
0
Dimo
Telerik team
answered on 20 Jan 2010, 01:53 PM
Hi Pierre,

You need to register the resource handlers in a different way for IIS7:

http://www.telerik.com/help/aspnet-ajax/registering_the_httphandlers_on_windows_vista_iis_7_integrated_mode.html

http://www.telerik.com/help/aspnet-ajax/installtroubleshootingproductionserver.html

http://www.telerik.com/help/aspnet-ajax/web-resources-troubleshooting.html

Here is an example

<system.webServer>
    <modules>
        <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" preCondition="managedHandler"/>
    </modules>
    <handlers>
        <add name="Telerik.Web.UI.WebResource.axd_*" path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI" preCondition="integratedMode,runtimeVersionv2.0"/>
        <add name="ScriptResource.axd_GET,HEAD" path="ScriptResource.axd" verb="GET,HEAD" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" preCondition="integratedMode,runtimeVersionv2.0"/>
        <add name="*_AppService.axd_*" path="*_AppService.axd" verb="*" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" preCondition="integratedMode,runtimeVersionv2.0"/>
        <add name="*.asmx_*" path="*.asmx" verb="*" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" preCondition="integratedMode,runtimeVersionv2.0"/>
    </handlers>
</system.webServer>


Regards,
Dimo
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
General Discussions
Asked by
Pierre
Top achievements
Rank 1
Answers by
Dimo
Telerik team
Share this question
or