I need to validate 2 CheckBoxLists together. Meaning i can check one box from either list and the validation has to pass. What would be the proper way of implementing something like this ?
I'm tempted to extend CustomValidator, add a property ControlValueId2 to pass the ID of my second CheckBoxList, but i can't help but feel there must be a better way.
The reason i use 2 checkboxlists is because the data is coming from 2 different database with different schemas and even if they look the same, under the hood they are different. I don't think you can bind 2 datasources to one checkboxlist ?
Kinda new to webforms so any insight would be greatly appreciated. Sry i cannot post any code, but i hope i was clear enough!