Hi guys,
I have an accordian control that has 3 panes.
1) The first allows a user to update some of his details (Fullname, email etc) with 3 buttons (Update, Delete and Cancel)
2) The second pane has form fields to reset his user password with 3 textboxes and a reset button
3) The third pane has a button to reset failed login attemps
Here's my problem. Because I'm using asp validators on most of controls on the form, when clicking working on the second pane and trying to submit the user details, the form controls
in the first pane gets validated and even if not validation failed on the second pane, the form does not submit, because of the controls in the first pane fail to pass validation.
Somehow I need to disable validation on say, panes one and 3 when working on pane selected pane 2 and vice versa for pane one and two. I thought maybe and SelectedIndexChanged event
handles, but I don't know how to do it
Any suggenstions would be welcome
Thanx