In this i will tell you how you can resolve the below given error while using requiredfieldvalidation in your asp.net in Visual Studio 2013. So this article will tell you how you can enabling unobtrusive validation mode in asp.net 4.5.
"
"
WebForms UnobtrusiveValidationMode requires a ScriptResourceMapping for 'jquery'. Please add a ScriptResourceMapping named jquery(case-sensitive)."
Now the above error occurs while using RequiredFieldValidator in asp.net. To resolve this issue. Add the below code into your web.config file.
<appSettings>
<add key="ValidationSettings:UnobtrusiveValidationMode" value="None"/>
</appSettings>
|
0 comments:
Please let me know your view