Thanks for informing On Sat, Nov 28, 2009 at 12:23 PM, Karthikeyan R <[email protected]> wrote:
> Instead of copying *System.Web.Extensions.dll* & * > System.Web.Extensions.Design.dll* from C:\Program Files\Microsoft ASP.NET\ > ASP.NET 2.0 AJAX Extensions\v1.0.61025 and placing it in the bin, I added > these dlls as references before publishing website. Now the extenders works > good. > > On Fri, Nov 27, 2009 at 10:15 AM, Atul Atey <[email protected]> wrote: > >> Can you provide me with the aspx page. >> >> >> On Fri, Nov 27, 2009 at 9:54 AM, Karthikeyan R <[email protected]>wrote: >> >>> Hi Atul, >>> >>> 1. I have already included Script Manager at the top of aspx page. >>> 2. I have already added the reference of ajaxcontroltoolkit in the bin >>> folder. >>> 3. Have added HTTPModule & HTTPhandlers. >>> >>> Please find the code below, >>> >>> <httpHandlers> >>> <remove verb="*" path="*.asmx"/> >>> <add verb="*" path="*.asmx" validate="false" >>> type="System.Web.Script.Services.ScriptHandlerFactory, >>> System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, >>> PublicKeyToken=31bf3856ad364e35"/> >>> <add verb="*" path="*_AppService.axd" >>> validate="false" >>> type="System.Web.Script.Services.ScriptHandlerFactory, >>> System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, >>> PublicKeyToken=31bf3856ad364e35"/> >>> <add verb="GET,HEAD" path="ScriptResource.axd" >>> type="System.Web.Handlers.ScriptResourceHandler, >>> System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, >>> PublicKeyToken=31bf3856ad364e35" validate="false"/> >>> </httpHandlers> >>> <httpModules> >>> <add name="ScriptModule" >>> type="System.Web.Handlers.ScriptModule, >>> System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, >>> PublicKeyToken=31bf3856ad364e35"/> >>> </httpModules> >>> >>> Still the issue persists, any ideas? >>> >>> >>> On 11/26/09, Atul Atey <[email protected]> wrote: >>> > Hi there; >>> > >>> > Do you have ScriptManager at the top of your aspx page. Do you added >>> > HTTPModule and HTTPHandlers in web.config, have you aaded the reference >>> of >>> > Ajax >>> > control tool kit dll to the bin folder of your application. If yes then >>> it >>> > should work and if not I have to go through the code......... >>> > >>> > Regards; >>> > Atul >>> > >>> > >>> > >>> > On Thu, Nov 26, 2009 at 2:40 PM, Raghupathi Kamuni >>> > <[email protected]>wrote: >>> > >>> >> http://forums.asp.net/t/1103022.aspx >>> >> http://forums.asp.net/p/1070335/1560066.aspx >>> >> >>> >> On Thu, Nov 26, 2009 at 1:54 PM, Karthikeyan R <[email protected] >>> >wrote: >>> >> >>> >>> Hi, >>> >>> >>> >>> I have recently deployed one application in web server, I have used >>> Ajax >>> >>> control tool kit extenders CalendarExtender and AutoComplete >>> Extender. >>> >>> Both >>> >>> these extenders works good in local where as it does not work on the >>> >>> server. >>> >>> I have dot net frame work 2.0 installed in my machine, I have used >>> the >>> >>> Ajax control tool kit dll in the application & added to my codebehind >>> >>> page >>> >>> like this, >>> >>> >>> >>> <% >>> >>> @ Register Assembly="AjaxControlToolkit" >>> Namespace="AjaxControlToolkit" >>> >>> TagPrefix="cc1" %> >>> >>> >>> >>> *Used the calendar extender as below,* >>> >>> >>> >>> <cc1:CalendarExtender ID="caldate" runat="server" >>> >>> >>> >>> TargetControlID="txtentrydate" CssClass="MyCalendar" PopupButtonID >>> >>> ="imgdate" Format="dd-MMM-yyyy"> >>> >>> >>> >>> </cc1:CalendarExtender> >>> >>> >>> >>> >>> >>> >>> >>> Can some one point me where it might went wrong? >>> >>> >>> >>> >>> >>> -- >>> >>> Thanks & Regards, >>> >>> Karthikeyan >>> >>> >>> >> >>> >> >>> > >>> >>> >>> -- >>> Thanks & Regards, >>> Karthikeyan >>> >> >> > > > -- > Thanks & Regards, > Karthikeyan >
