Today while working on ASP.Net web application in VS Express 2012 for Web, I got a strange error like this.

Error : WebForms UnobtrusiveValidationMode requires a ScriptResourceMapping for ‘jquery’. Please add a ScriptResourceMapping named jquery(case-sensitive).
It was strange because I just added some basic components like TextBox, Requiredfield Validator, and validation summary controls only. Later I found one Microsoft Connect issue. And according to the connect website we can fix this by removing following element from the web.config file.
<add key="ValidationSettings:UnobtrusiveValidationMode" value="WebForms" />
But I couldn’t find this element in my web.config file
The another option to fix this issue is registering JQuery in Global.asax,in the Application_Start event like this
ScriptManager.ScriptResourceMapping.AddDefinition("jquery",
new ScriptResourceDefinition
{
Path = "~/scripts/jquery-1.7.2.min.js",
DebugPath = "~/scripts/jquery-1.7.2.min.js",
CdnPath = "http://ajax.microsoft.com/ajax/jQuery/jquery-1.4.1.min.js",
CdnDebugPath = "http://ajax.microsoft.com/ajax/jQuery/jquery-1.4.1.js"
});
And it worked without any issue. Adding following element in the web.config also works.
<add key="ValidationSettings:UnobtrusiveValidationMode" value="None" />
You can find more about Unobtrusive JavaScript on Wikipedia
Happy Programming
Peter
Thanks for your help, but in which web.config section does the ‘<add…' tag go???
Anuraj P
Your application web.config file.