I have created a custom control and a custom validator (extending BaseValidator). On custom control I have set ValidationProperty("Values"). The problem is that validation doesn't work when postback is sent unless I execute Page.Validate(). And when I call Page.Validate() all validators are executed wich is not what I would expect on postback.
So the question is how do I create custom validator wich would be executed when control value changes and validates just that control?