So, I have a login box and a signup box on one page. Both have RequiredField validator. Right now, fields for both sign up and login get validated when I click either login or signup.
However, I want it, if sign up is clicked, only signup fields get validated and if login is clicked on login fields get validated.
Could you please help me out here?
Many Thanks!
Assign ValidationGroup=”SignUp” to the signup validators and button and ValidationGroup=”Login” to the login validators and button
when you do this only the validation in the same group will fire