Chapter 19, Page 555, Turning off unobtrusive validation
The book says disable unobtrusive validation by commenting out a line in web.config. The problem is I didn't find that line. However you can disable by adding this to your web.config inside your <configuration> tags:
<appSettings>
<add key="ValidationSettings:UnobtrusiveValidationMode" value="None" />
</appSettings>
|