I just need some suggestions of how to approach validating a GridView column.
What I currently have is a GridView with three columns (Tests, Results, Date Completed).
For the Test column it will be pre populated based on a SQL Script. The Results Columns is empty textboxes that the user will have to enter the Test Result and the date column is the same as Results column containing empty textboxes for the user to enter the Date of the Test Being Completed. I want to be able to Validate the Results column, currently the date column I am using calendar extender, masked edit extender and validator and that is working just fine. Now for the results column the Validation will be different based on the Test, the test ABC can have a result only being between 2-7 while Test CBA can be True/False and so on. I just dont know how to approach of validating each field. I hope you can help me out. Thanks.
<asp:GridView ID="grdResults" runat="server"
CssClass="gridview"
RowStyle-CssClass="gridview_itm"
AlternatingRowStyle-CssClass="gridview_aitm"
HeaderStyle-CssClass="gridview_hdr"
Width="100%" AutoGenerateColumns="False">
<Columns>
<asp:TemplateField HeaderText="Test">
<ItemTemplate>
<asp:Label ID="lblTest" runat="server" Text='<%#Eval("Test")%>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Result">
<ItemTemplate>
<asp:TextBox ID="tbResult" runat="server" ></asp:TextBox>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Date Completed">
<ItemTemplate>
<asp:TextBox ID="tbDate" runat="server" ></asp:TextBox>
<asp:Image ID="imgCalendar" runat="server" ImageUrl="~/App_Themes/Sugar2006/images/Calendar_scheduleHS.png" ImageAlign="Middle" />
<asp:CalendarExtender ID="ce" runat="server" TargetControlID ="tbDate" PopupButtonID="imgCalendar" />
<asp:MaskedEditExtender ID="mex" runat="server"
TargetControlID="tbDate"
Mask="99/99/9999"
MaskType="Date"
MessageValidatorTip="true"
OnFocusCssClass="MaskedEditFocus"
OnInvalidCssClass="MaskedEditError" />
<asp:MaskedEditValidator ID="mev" runat="server"
ControlToValidate="tbDate"
ControlExtender="mex"
Display="Dynamic"
InvalidValueMessage="This date is invalid" Font-Bold="True"
ForeColor="#D50000" />
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
test abcandtest cba?). – Tim Schmelter Mar 19 '12 at 15:58test abcin future since they're confusing and pointless(in terms of understandability). – Tim Schmelter Mar 19 '12 at 16:06