If you are having problems with the "asp.net ajax client-side framework failed to load" error and you are using forms authentication you need to allow users access to WebResource.axd and ScriptResource.axd. If you are using Telerik's controls you need to
allow users access to Telerik.Web.UI.WebResource.axd.
If you are having problems with the "asp.net ajax client-side framework failed to load" error and you are using forms authentication you need to allow users access to WebResource.axd and ScriptResource.axd. If you are using Telerik's controls you need to
allow users access to Telerik.Web.UI.WebResource.axd.
For me it was working on server 2003 with IIS 6 perfectly but not in server 2008 with IIS7. Then what I did was I compared web.config with web.cofig of example code in Ajax control tool kit.
Then only different was <system.webserver></system.webserver> block. when I copied that into my config,then issue was gone.
prophat247
0 Points
1 Post
asp.net ajax client-side framework failed to load
Nov 04, 2009 06:56 PM|LINK
If you are having problems with the "asp.net ajax client-side framework failed to load" error and you are using forms authentication you need to allow users access to WebResource.axd and ScriptResource.axd. If you are using Telerik's controls you need to allow users access to Telerik.Web.UI.WebResource.axd.
<authentication mode="Forms"> <forms loginUrl="Logon.aspx" name="authticket" timeout="20" path="/" /> </authentication> <authorization> <deny users="?" /> </authorization><location path="WebResource.axd"> <system.web> <authorization> <allow users="*" /> </authorization> </system.web> </location> <location path="ScriptResource.axd"> <system.web> <authorization> <allow users="*" /> </authorization> </system.web> </location> <location path="Telerik.Web.UI.WebResource.axd"> <system.web> <authorization> <allow users="*" /> </authorization> </system.web> </location>I hope that information prevents hair loss as well as saves somebody some time!
Vince Xu - M...
All-Star
80367 Points
6801 Posts
Re: asp.net ajax client-side framework failed to load
Nov 09, 2009 04:59 AM|LINK
Thank you for your providing the solution of compatiblity.
programmer12...
Member
5 Points
5 Posts
Re: asp.net ajax client-side framework failed to load
Feb 28, 2010 06:06 AM|LINK
Thanks a lot for sharing this...It helped me solve this very same problem that I was facing..
pargat_g
Member
2 Points
2 Posts
Re: asp.net ajax client-side framework failed to load
Jul 29, 2010 09:49 PM|LINK
Thanks for providing the solution. I was facing the same problem and work perfactly now :)
Ajax error Could not load file or assembly 'AjaxControlToolkit' or one of its dependencies. The system cannot find the file specified.
tsampath
Member
2 Points
1 Post
Re: asp.net ajax client-side framework failed to load
Aug 02, 2010 05:55 PM|LINK
For me it was working on server 2003 with IIS 6 perfectly but not in server 2008 with IIS7. Then what I did was I compared web.config with web.cofig of example code in Ajax control tool kit.
Then only different was <system.webserver></system.webserver> block. when I copied that into my config,then issue was gone.
dennish
Member
2 Points
8 Posts
Re: asp.net ajax client-side framework failed to load
Sep 07, 2011 03:39 AM|LINK
Thank you so much!
Strange, it works in Firefox without this....
Terence10
Member
4 Points
3 Posts
Re: asp.net ajax client-side framework failed to load
Sep 21, 2012 01:10 PM|LINK
Thanks! The Telerik answer was what I needed.