All I have to share right now is a topic we’ve been struggling a little with at work. CheckBoxList and validators. Most validators work only with a subset of the web controls in ASP.NET. For example, you can’t add a RequiredFieldValidator to a CheckBoxList. Why? Dunno why exactly, pry something to do with the multi-select controls vs. others like RadioButtonList that are single-select. Still not a good reason at all…
But I was finally able to find an article explaining how to create a RequiredFieldValidator that works with CheckBoxLists. Unfortunately it doesn’t work on the client-side; the scripts are disabled, as they don’t work with these ‘excluded’ controls. But I’m working on that right now and will post the solution when I have it….
UPDATE: Here’s the answer to the client-side validation problem. It creates a JS function that the validator calls for its evaluationFunction. Pretty sweet!