Is it possible to run a JavaScript function after client-side validation in asp.net?
I have multiple validation controls on my page along with an input button that has CausesValidation set to true. The OnClientClick handler currently executes JavaScript before the validation takes place, but I am interested in running some functions afterwards.
Is there a way to achieve this?