Hey!
Im having a master page form which i validate. I add code inside the asp:content tag (validation rules code). The validation is working correctly, the only problem i have is that when i click my "save" button i can see the validation errors come up (correctly) but the button still causes a postback and performs its server side code.
I thought that the server code execution would be halted if the form vad invalid.
Any tips on this matter? I dont want the "save" button to run its server side code if any validation error occurs, just like the asp requiredFieldValidator works.
Thanks in advance!