I have a aspx page with multiple groups to be validated. validation on groups happen based on some conditions I have written.
Currently all my validation work fine with client side validation.
But, when I do a postback the validation summary is getting disappeared. In the post back I am enabling some additional controls which are not yet touched by the user( so validation should not happen on this newly visible controls).
so My problems are:
- To Retain the Validation summary generated by client side script on post back.
- Only Validation messages that are generated on client side should be visible.
- Newly added field should not be validated on postback(fields that are untouched).
Please suggest....