Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Are you getting Microsoft JScript runtime error: Sys.ScriptLoadFailedException:
The script '/YourSiteName/ScriptResource.axd?d=ebUIu-RsatQBXvExgP5y3pvOqX2PbIJ6uav4Avk4QzmounX74siwLINKKPmlFz54oTPVrGJa4XpgCYiosTExfEdJoHleHTQaH7TE19A6Hqg1&t=632986009464531250' could not be loaded or does not contain the Sys.Application.notifyScriptLoaded() callback
Is your authentication mode = “Forms”? Does it happen when you’re loading your login page?
To resolve the problem, add:
<location path="ScriptResource.axd">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
to your web.config.
Comments
Anonymous
November 19, 2006
hi, i am getting the same error , but authentication node is not form, please let me know reasonAnonymous
November 26, 2006
hi, i tried with it ,but it is givving error, <asp:UpdatePanel is undefinedAnonymous
November 27, 2006
Sounds like you're missing things in web.config. Consider creating a new AJAX project, and compare your web.config with that one. Also, if you only get this in design view, just ignore it... it's a known problem when using master page.Anonymous
December 07, 2006
I am able to run the Application fine where I have used Ajax 1.0 beta 2 until postback. After the PostBack It does not Working. Again the Application Start working if I Removes all the ScriptResource.axd files from the Temporary internet Folder. Can anyone please come forward to let me know any solutions or the reason for this Problem. Thanks & Regards, RajibAnonymous
February 14, 2007
I am having the same problem when i dynamically add an accordion control to a page.Anonymous
June 25, 2007
Hi i have form which has the update pannel and the update progress this aspx i am calling this aspx page under frame i am getting the following error Microsoft JScript runtime error: 'Sys' is undefinedAnonymous
June 26, 2007
Sounds like something is missing in web.config. Did you 'Ajaxify' an older asp.net project? Try creating a brand new ASP.NET AJAX-Enable Web Site, add an update panel and see if you get any errors...Anonymous
July 03, 2007
I am getting the same error but not a form authentication. the page where i am getting error is a content page having the timer and update panel. Regards, Sri..