I'm in a bit of a pickle with my ASP.net MVC project because I need to disable unobtrusive validation since I'm dealing with dynamically created drop down lists.
I tried using
@{HtmlHelper.ClientValidationEnabled = false;}
but then I ran into the error message stating "HtmlHelper does not contain a definition for ClientValidationEnabled". What's the best way to resolve this issue, or is there another workaround that could help me out? I really just need to turn off validation for one specific form.