Tech Junkie Blog - Real World Tutorials, Happy Coding!: ASP.NET : WebForms UnobtrusiveValidationMode requires a ScriptResourceMapping for 'jquery'. Please add a ScriptResourceMapping named jquery(case-sensitive)

Tuesday, October 8, 2013

ASP.NET : WebForms UnobtrusiveValidationMode requires a ScriptResourceMapping for 'jquery'. Please add a ScriptResourceMapping named jquery(case-sensitive)

If you receive the WebForms UnobtrusiveValidationMode requires a ScriptResourceMapping for 'jquery' error, put the following lines of code in the Appliction_Start method in the Global.asax.cs file

        protected void Application_Start(object sender, EventArgs e)
        {
            string jqueryVersion = "1.8.0";

            System.Web.UI.ScriptManager.ScriptResourceMapping.AddDefinition("jquery", 
                                                new System.Web.UI.ScriptResourceDefinition
            {
                Path = "~/Scripts/jquery-" + jqueryVersion + ".min.js",
                DebugPath = "~/Scripts/jquery-" + jqueryVersion + ".js",
                CdnPath = "http://ajax.aspnetcdn.com/ajax/jQuery/jquery" + jqueryVersion + ".min.js",
                CdnDebugPath = "http://ajax.aspnetcdn.com/ajax/jQuery/jquery" + jqueryVersion + ".js",
                CdnSupportsSecureConnection = true,
                LoadSuccessExpression = "Window.jquery"
                
            });
        }


The above lines of code registers the jQuery library with the ScripManager. This will get rid of the error, you can do the same this with jQueryUI library.


3 comments:

  1. Nice Blog...Thanks for sharing with us...and i have some information about The Botanika and it is a new residential project located in Gachibowli, Hyderabad. This project offers 3 BHK Luxury Apartments in Affordable Prices. Contact Us@ 98492 05577

    The Botanika Hyderabad
    The Botanika Gachibowli

    ReplyDelete
  2. Great Blog...thanks for sharing with us...& I have some information about Spring Is In The Air Urbanrise & it is a residential apartments developed by Manhattan Condos, it is located in Miyapur, Hyderabad. It provides 2,3bhk flats available in affordable prices.

    Spring Is In The Air Urbanrise Miyapur
    Spring Is In The Air Urbanrise Hyderabad

    ReplyDelete

Search This Blog