Hi,
When I deploy my project on web server (IIS7), the ajax composent do not appear but on my local computer my web project work correctly.
Do you know why ?
ps: sorry for this bad english....
Comments: Hi! Try to update your web.config file: ``` <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" /> ``` Place this entry under ```<system.webServer>``` / ```<handlers>``` section. Additional link: [http://geekswithblogs.net/lorint/archive/2007/03/28/110161.aspx](http://geekswithblogs.net/lorint/archive/2007/03/28/110161.aspx) Best regards, Fadil
When I deploy my project on web server (IIS7), the ajax composent do not appear but on my local computer my web project work correctly.
Do you know why ?
ps: sorry for this bad english....
Comments: Hi! Try to update your web.config file: ``` <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" /> ``` Place this entry under ```<system.webServer>``` / ```<handlers>``` section. Additional link: [http://geekswithblogs.net/lorint/archive/2007/03/28/110161.aspx](http://geekswithblogs.net/lorint/archive/2007/03/28/110161.aspx) Best regards, Fadil