Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My GridView:

<asp:GridView ID="MyGridView" runat="server" ShowFooter="true"
                                AutoGenerateColumns="False" Visible="True">
<Columns>
<asp:BoundField DataField="id" ItemStyle-HorizontalAlign="center"/>
<asp:BoundField DataField="fullName"  />
<asp:TemplateField HeaderText="situation>">
<ItemTemplate>
  <asp:DropDownList ID="dl_situation" runat="server">
   </asp:DropDownList>
</ItemTemplate>
</asp:TemplateField>

<asp:TemplateField>
 <ItemTemplate>
         <asp:TextBox ID="tbNr" runat="server"></asp:TextBox>
</ItemTemplate>
</asp:TemplateField>  
<asp:TemplateField HeaderText="Data">
<ItemTemplate>
 <asp:TextBox ID="tbDate" runat="server"></asp:TextBox>
 <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" 
      ErrorMessage="*" ControlToValidate="tbDate">
   </asp:RequiredFieldValidator>
 </ItemTemplate>
</asp:TemplateField>     
</Columns>
</asp:GridView>

It work fine, but when I add RequiredFieldValidator for textbox with id="tbDate" mygrid does not work

share|improve this question
define: "does not work" – Aristos Aug 20 '12 at 7:28
what does not work ? nobody can understand what is not working with text you have posted your question...Explain your question a bit more.. – Mayank Pathak Aug 20 '12 at 7:32
@Aristos,@Mayank Pathak Without RequiredFieldValidator the grid fills normally with data, but when i add the validator that grid does not show at all, and there's no error displayed – Alex Aug 20 '12 at 7:42
1  
Do you have place it inside UpdatePanel ? If yes, remove the UpdatePanel to see the errors. – Aristos Aug 20 '12 at 7:48
@Ariston I removed update panel and it gave me error: Exception has been thrown by the target of an invocation, now I need to solve this exception, thanks for the help ) – Alex Aug 20 '12 at 9:04

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.