Wizard Control - Finish Button Validation
-
Hi, I have designed a registration form using wizard control in asp.net2.0. it consists of 5 steps. In steps 1, 2 and 4 there are some mandatory fields where the user has to fill. I kept some validations for that in those steps. My Issue: How can i make sure(reconfirm) in 5th step that the user has filled all the required fields in previous steps. Please let me know your suggestions. Many Thanks!! Jagadeesh
-
Hi, I have designed a registration form using wizard control in asp.net2.0. it consists of 5 steps. In steps 1, 2 and 4 there are some mandatory fields where the user has to fill. I kept some validations for that in those steps. My Issue: How can i make sure(reconfirm) in 5th step that the user has filled all the required fields in previous steps. Please let me know your suggestions. Many Thanks!! Jagadeesh
Dear jagadeesh, use validators like requiredfield validator etc.. then in the page_load you can check it through page.Isvalid. If you want to check them means use some validation summary to view the errors otherwise use javascript for validating the data.
All The Best Sathesh Pandian
-
Dear jagadeesh, use validators like requiredfield validator etc.. then in the page_load you can check it through page.Isvalid. If you want to check them means use some validation summary to view the errors otherwise use javascript for validating the data.
All The Best Sathesh Pandian
Hello Sathesh Pandian, Page.IsValid doesn't work in wizard control's finish button click event. To be more clearer on the question i mentioned above 5 steps which means 5 different wizard pages, but not 5 input fields. In the 5 wizard pages I kept some validations in pages 1, 2 and 4 along with validation summary controls in those three pages. My Issue: How can i make sure(reconfirm) in 5th step that the user has filled all the required fields in previous wizard control pages.:doh: Please let me know how to resolve this issue. Many Thanks!! Jagadeesh