Hello
Into my EditItemTemplate i have added a dropdownlist with requiredFieldValidator as the user he must choose one value before he click on update button. But what happening is click on update without choosing any value and he just move me to ItemTemplate without
the RequiredFieldValidator show me the message
<div class="control-group">
<div class="controls">
<asp:DropDownList ID="UpdGendrDDL" runat="server" CssClass="form-control">
<asp:ListItem>Select your gender</asp:ListItem>
<asp:ListItem Value="Male">Male</asp:ListItem>
<asp:ListItem Value="Female">Female</asp:ListItem>
</asp:DropDownList>
</div>
...
Go to the complete details ...