Hi,
i have 2 tab strip i.e general and participants and textboxes on both tabs.
need to put required field validation on both tabs for compulsory fields.
validation is working on first tab while clicking on save button but not of other tab.
<asp:RequiredFieldValidator ID="v4" ControlToValidate="txtMaxParticipantField" ErrorMessage="* Enter Max Participant number"
Display="None" InitialValue="Enter Max Participant number" runat="server"
ValidationGroup="Trainingsave"></asp:RequiredFieldValidator>
all validation on general tabs textbox fields is firing on save button click but validation on participants tab textbox fields is not fired.
please help.