Hi,
I am facing a problem related to the setfocusonerror property of the requiredfieldvalidator. Here is the code:-
<tr>
<td>
<asp:TextBox ID="txtFirstName" ValidationGroup="Submit" runat="server">
</asp:TextBox>
</td>
<td>
<asp:RequiredFieldValidator ID="reqFirstName" ControlToValidate="txtFirstName"
runat="server" ErrorMessage="Please Enter First Name" SetFocusOnError="true" ValidationGroup="Submit" ></asp:RequiredFieldValidator>
</td>
</tr>
<tr id="trRoleGapValue" runat="server" visible="false" >
<td>
<asp:Label ID="lblRole" runat="server" Text="Role"></asp:Label>
</td>
<td>
<asp:DropDownList ID="ddlRole" runat=&q ...
Go to the complete details ...