hi all i want to know that if apply server side validation on text box then when validation event fire (i means in wich state of page cycle this validation has been done in server side)
+3
A:
It fires after the Load phase, before a button-click happens.
But in such a button-click handler, you need to check the results using Page.IsValid
, to prevent handling the click when there is invalid input.
Hans Kesting
2010-09-06 13:05:09