I have 2 TextBoxes (textBoxA, textBoxB), both watched by their own RequiredFieldValidator. I want to 'enable' the RequiredFieldValidator for textBoxB just when textBoxA has a value (or meets some specific conditions).
Use cases:
Case 1 textBoxA = ""; -> Show Required Field Validation Message textBoxB = ""; -> Do not show validation message
Case 2 textBoxA = "has a value"; textBoxB = ""; -> Show Required Field Validation Message
Case 3 textBoxA = "has a value"; textBoxB = "has a value too";
Thanks for your help!!