Hi
I want to write a custom validator which doesn't do anything before the user makes a post back (i.e. no JavaScript will be generated for it). The validator should make sure that there is a POST argument with the name hello
. The value of that argument must be a comma-separated string of integers.
The reason that I want to make this an actual validator is that I want to integrate the error message into the validation summary that I'm using, which displays a bulleted list of errors.
So where do I start?