Ajax animation effect not working
-
Hi all I have Ajax enabled website. Its working fine in my local server (Ajax animation effects are working) but on the server its not working. Pages showing javascript error 'sys' not defined'. I have added ajax dlls and System.Web.Extensions.dll into website's bin folder. but does not work. Many post suggests adding httphandlers and httpmodules like... <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="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> After adding httphandlers, it starts showing 500 - Internal server error. and if I remove httphandlers section, it start working but ajax animation does not work. Have any idea? ASP.NET 2.0 with IIS 6
Bajrang Singh Using .net 2.0 (VS2005)