In your <edititemtemplate> tag, add your textbox controls or whatever you are trying to validate and add your validator here as well.
This is an example:
<EditItemTemplate>
<asp:TextBox ID="txt" CssClass="inputEdit" Runat=server>
</asp:TextBox>
<asp:RequiredFieldValidator id="RequiredFieldValidator1" ControlToValidate="txt" runat="server">Required</asp:RequiredFieldValidator>
</EditItemTemplate>
--Stole this from a moderator
I will only tell you how to do it, not do it for you.
Unless, of course, you want to hire me to do work for you.
|