ASP.NET MVC AJAX Sys is undefined error

17,008

Solution 1

Load the page in Firefox, then use Firebug to inspect the page - you will be able to see all the individual scripts that have been loaded, plus all the network requests that were issued, and whether they succeeded or not. This is better than trying to troubleshoot from the server perspective.

If you are using IE8, you can use the Developer Tools window, but I think Firebug is better - both tools support JavaScript debugging though.

The most likely problem is that you are running script in your partial view before the scripts it is dependent on have had a chance to load - make sure that any script calls you have inside your partial view will only run once the page has loaded, and not immediately during loading.

Solution 2

In web.config add the following line of code under appsettings tag:

<add key="UnobtrusiveJavaScriptEnabled" value="true" />

Solution 3

Just in case... use the following to avoid path issues

<script src="<%= Url.Content("~/Scripts/MicrosoftAjax.debug.js") %>" 
    type="text/javascript"></script>  
<script src="<%= Url.Content("~/Scripts/MicrosoftMvcAjax.debug.js") %>" 
    type="text/javascript"></script>

Source: http://msdn.microsoft.com/en-us/library/dd381533.aspx

Thanks, Arty

Solution 4

All the above cases are ok.But sometimes developer forget to add javascript files for ajax .So please check that also.

Solution 5

Basically you might be missing: MicrosoftMvcAjax., MicrosoftMvcValidation.debug and MicrosoftMvcValidation JS file references.

Do the below steps:

  1. PM> Install-Package MicrosoftAjax

  2. PM> Install-Package MicrosoftMvcAjax.Mvc5

  3. Include them in bundleconfig like below:

    bundles.Add(new ScriptBundle("~/bundles/mvcFoolProof")
           .Include("~/Scripts/MicrosoftAjax*",
                    "~/Scripts/MicrosoftMvcAjax*", 
                    "~/Scripts/MicrosoftMvcValidation*",
                    "~/Scripts/mvcfoolproof*",
                    "~/Scripts/MvcFoolproofJQueryValidation*",
                    "~/Scripts/MvcFoolproofValidation*"));
    

Now it should work without any errors.

Share:
17,008
cnaegle
Author by

cnaegle

Director of Engineering

Updated on June 11, 2022

Comments

  • cnaegle
    cnaegle almost 2 years

    I am getting a "Microsoft JScript runtime error: 'Sys' is undefined" error on one of my pages in an MVC application when I attempt an AJAX call. The AJAX call is made from a partial view which is embedded in more than one page. It works fine on all of the pages except one. I have read posts pointing to the web.config file settings and .axd mappings as possible solutions, but the application is configured correctly in the web.config, and the .axd mappings are also correct in IIS. Plus it works fine on all of the pages that use this partial view except one. It is acting like the AJAX libraries are not loading for this one page.

    The references to the script files are in the shared site.master file. All of the pages, including the one that doesn't work, reference the same masterpage.

    Any ideas? I have been working on this one for two days now. Thanks.

    EDIT: As Sam pointed out below, it would seem like the AJAX call is firing before the AJAX libraries have a chance to load. But, the AJAX call is triggered by a submit button long after the page has rendered, so the AJAX libraries have had plenty of time to load - sorry for not giving enough information the first time.

  • cnaegle
    cnaegle almost 15 years
    @Sam - I Already took a look with firebug and can see both Ajax libraries are loaded when I click on the scripts tab. I am not that familiar with firebug, though, so I might be missing something. I have used fiddler a lot so I will take a look with it tomorrow when I get to the office to verify the call for the scripts are not failing. Since the ajax call is triggered from a submit button long after the page has rendered I would rule out that the scripts haven't had a chance to load. Thanks.
  • cnaegle
    cnaegle almost 15 years
    @Sam - took a look with Fiddler this morning and guess what? The path to the scripts file is incorrect for that page only. Don't know why yet, but when I put a fully qualified path in for the scripts, the page works perfectly. Thanks, I am marking your answer as correct since it sent me down the right path - using a tool that would have told me what I needed to know two days ago :)
  • Raj Rao
    Raj Rao over 11 years
    This seems to be the first thing that people should check - whether they are including the MicrosoftAjax.js and MicrosoftMvcAjax.js files
  • coryrwest
    coryrwest over 8 years
    For some reason when installing the nuget package for Microsoft Unobtrusive Ajax this was not added to my Web.Config. Thanks for the tip.