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

DatePicker Not Working on Live Server

1 Answer 295 Views
Calendar
This is a migrated thread and some comments may be shown as answers.
wavuti
Top achievements
Rank 1
wavuti asked on 22 Jan 2010, 08:44 PM
Hi,

I got my datepicker controls working locally on a Windows Vista  IIS7 development server. However, on deploying my site on the Live server, a Windows 2003(IIS 6.0) Server, I cannot get it to work. I tried following the instructions laid out here and even uploaded Telerik.Charting.dll after I got an error. 

Here are portions of my Web.config
   <compilation debug="true" strict="false" explicit="true"
      <assemblies> 
        <add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" /> 
        <add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> 
        <add assembly="System.Web.Extensions.Design, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> 
        <add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" /> 
          <add assembly="Telerik.Charting, Version=2.0.3.0, Culture=neutral, PublicKeyToken=D14F3DCC8E3E8763"/> 
          <add assembly="System.Drawing.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> 
      </assemblies> 
    </compilation> 
---------------- 
    <httpModules> 
            <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> 
            <!-- *******  Register the RadUploadModule for IIS prior to v.7  ****** --> 
            <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule" /> 
        </httpModules> 
------------------- 
    <location path="Telerik.RadUploadProgressHandler.ashx"
        <system.web> 
            <authorization> 
                <allow users="*"/> 
            </authorization > 
        </system.web> 
    </location> 
--------------------------- 
<handlers> 
        <remove name="WebServiceHandlerFactory-Integrated" /> 
        <add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> 
        <add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> 
        <add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> 
          <add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" validate="false" /> 
          <add path="ChartImage.axd" type="Telerik.Web.UI.ChartHttpHandler" verb="*" validate="false" /> 
          
      </handlers> 
Am I missing something?

Thanks in advance.

1 Answer, 1 is accepted

Sort by
0
wavuti
Top achievements
Rank 1
answered on 22 Jan 2010, 10:37 PM
OK, fixed the issue. It was a web.config issue as suspected. The best way to sort it out is create a blank AJAX enabled website and make sure to add any missing entries from the newly created web.config file to your site's web.config.

Hope that helps anyone else who encounters a similar problem!
Tags
Calendar
Asked by
wavuti
Top achievements
Rank 1
Answers by
wavuti
Top achievements
Rank 1
Share this question
or