I recently started using ScriptManager. I have an ASP.NET DropDownList control that I\'m populating via JavaScript. However, I\'m using Event Validation. So I run into th
For event validation to work property, you have to register every possible POST value for the control using RegisterForEventValidation. You can invoke this method multiple times for the same control to register multiple value.
Sometimes, this is not possible - for example, in your case where you are populating drop-down dynamically from java-scripts. Solution(s) would be
I generally go by #1 or #3 based on requirements/budget etc.