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.

i want to count such rows which have textbox.text !=null with external button click but when i try row.findcontrol its null here is my code

    <asp:GridView ID="GridViewCellNo" runat="server" AutoGenerateColumns="False" BorderStyle="None"
GridLines="None" OnRowDataBound="GridViewAddCellNumber_RowDataBound" ShowFooter="True"
ShowHeader="false">
<Columns>
<asp:TemplateField ItemStyle-Width="200px">
<ItemTemplate>
<asp:Label ID="LabelGVCellRowNo" runat="server" Text='<%#Eval("CellRowNumber")%>'
Visible="false"></asp:Label>
<asp:TextBox ID="TextBoxCellNo" runat="server" Text='<%#Eval("CellNumber")%>' Width="350px"></asp:TextBox>
                                                        <asp:RegularExpressionValidator ID="REVCellNumber" runat="server" ControlToValidate="TextBoxCellNo"
                                                            CssClass="ErroreMessage" Display="None" ErrorMessage="&lt;b&gt;Required Field Missing&lt;/b&gt;&lt;br /&gt;Please enter the phone number(digits only)."
                                                            SetFocusOnError="True" ValidationExpression="^[0-9]*$"></asp:RegularExpressionValidator>
                                                        <asp:ValidatorCalloutExtender ID="VCOE_REVPhoneNumber" runat="Server" HighlightCssClass="validatorCalloutHighlight"
TargetControlID="REVCellNumber">
</asp:ValidatorCalloutExtender>
 </ItemTemplate>
 <FooterTemplate>
 <asp:TextBox ID="TextBoxAddCellNum" runat="server" Width="350px"></asp:TextBox>                                                   
<asp:RegularExpressionValidator ID="REVCellNumber" runat="server" ControlToValidate="TextBoxAddCellNum"                                                     CssClass="ErroreMessage" Display="None" ErrorMessage="&lt;b&gt;Required Field Missing&lt;/b&gt;&lt;br /&gt;Please enter the phone number(digits only)."
SetFocusOnError="True" ValidationExpression="^[0-9]*$"></asp:RegularExpressionValidator>
<asp:ValidatorCalloutExtender ID="VCOE_REVPhoneNumber" runat="Server" HighlightCssClass="validatorCalloutHighlight"
TargetControlID="REVCellNumber">
</asp:ValidatorCalloutExtender>
</FooterTemplate>
 </asp:TemplateField>
 <asp:TemplateField FooterStyle-HorizontalAlign="left" ItemStyle-HorizontalAlign="left"
 ItemStyle-Width="200px" ShowHeader="False">                                        
 <FooterTemplate>
  <table>
  <tr>
 <td width="20px">
  </td>
<td>
 <asp:Button ID="addAttributeGridViewCellNoButtonAdd" runat="server" CausesValidation="true" Text="+" OnClick="GridViewAddCellNumberButtonAdd_Click" ToolTip="Add" ValidationGroup="AddCellNo" Width="30px" OnClientClick="showProgress()"  />
 </td>
  <td>
 Add another number
  </td>
  </tr>
  </table>
 </FooterTemplate>
  </asp:TemplateField>
  </Columns>
  </asp:GridView>

when i run this fucntion below on a button click event it gives txtCellno =null

private int GridViewCellNoCount()
    {
        int cellCount = 0;
        foreach (GridViewRow row in GridViewCellNo.Rows)
        {
            TextBox txtCellno = row.FindControl("TextBoxAddCellNum") as TextBox;

            //if (((TextBox)row.FindControl("TextBoxAddCellNum")).Text.Length > 0)
            if (txtCellno.Text.Length > 0)
            {
                cellCount++;
            }

        }
        return cellCount;
share|improve this question
Is it because TextBoxAddCellNum is within the <FooterTemplate> rather than <ItemTemplate>? – freefaller Jun 18 '12 at 15:32
it is in <ItemTemplate> – skhurams Jun 18 '12 at 15:39
Not according the code you've provided above – freefaller Jun 18 '12 at 15:40
yes i realize that its footer but how do i get textbox value from footer can you provide some code – skhurams Jun 18 '12 at 15:44
Can you use GridViewCellNo.FooterRow? – freefaller Jun 18 '12 at 15:48

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.