I have two custom validators that are in the same validation group. This validation group is launched by one button. My question is, in what order will the custom validators fire in? It appears that the validator that is placed earlier in the aspx page fires first, but I don’t want to rely solely on this. Any thoughts?
I have two custom validators that are in the same validation group. This validation
Share
They will fire in the order they exist in the control tree, since the page lifecycle events recurse down that tree from the top. The validation event is, in turn, fired from a lifecycle event.