Hello,
I have a textbox with a textbox_TextChanged event (empty at this time)
My *.aspx code is as follows:
<asp:TextBox ID="txtGroupName" runat="server" Width="500" MaxLength="500" OnTextChanged="txtGroupName_TextChanged" AutoPostBack="True" CausesValidation="True" ValidationGroup="TCUserEntry" OnKeyDown="TextChanged(this)">
</asp:TextBox> <span style="color: red">*</span>
<asp:RequiredFieldValidator ID="RFV_GroupName" ControlToValidate="txtGroupName" runat="server" ErrorMessage="Group Name is Required" Display="Dynamic" ValidationGroup="TCUserEntry" SetFocusOnError="true" TabIndex="0"></asp:RequiredFieldValidator>
========
How do I trigger the required field validator control when the user tabs away from this control?
Thank you in advance.
Luis