ASP.NET validation issue - DropDownList being populated dynamically on client
- by Colin Jones
I'm populating a DropDownList using JS on the client and validating with a RequiredFieldValidator.
This works fine on the client but the Page.IsValid consistently comes back false on the server.
Is this because the selected value wasn't in the DropDownList when it was first served to the page?
What's the easiest way around this? (I need to leave server validation turned on)