Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have a grid view i added 5 template fields in 1st template field i added a placeholder and next 4 columns are template fields in which i added 3 texboxes 1 button respectively... and later iam adding the texboxes dynamically to place holder of 1st column.its all working fine.. now i want to save the data when i click the save button of the last column..while doin this iam unable to find the dynamically added textbox control which is inside the place holder

I used the following code

   <Columns>
    <asp:TemplateField HeaderText="STUDENT_ID">
    <ItemTemplate>
    <asp:PlaceHolder ID="ph" runat="server"></asp:PlaceHolder>
    </ItemTemplate>
    </asp:TemplateField>
    <asp:TemplateField HeaderText="STUDENT_NAME">
    <ItemTemplate>
    <asp:TextBox ID="txtName" runat="server"></asp:TextBox>
    </ItemTemplate>
    </asp:TemplateField>
    <asp:TemplateField HeaderText="DATE OF JOIN">
    <ItemTemplate>
    <asp:TextBox ID="txtDOJ" runat="server"></asp:TextBox>
    </ItemTemplate>
    <FooterTemplate>
    <asp:Button  ID="ftrAdd" Text="Add New Row" runat="server" CommandName="AddNewRow"/>
    </FooterTemplate>
    </asp:TemplateField>
    <asp:TemplateField>
    <ItemTemplate>
    <asp:Button ID="btnSave" Text="Save" runat="server"
    CommandName="Save_Click" CommandArgument='<%#Container.DataItemIndex %>'/>
    </ItemTemplate>
    </asp:TemplateField>
    </Columns>


protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
    if (e.Row.RowType == DataControlRowType.DataRow)
    {
        PlaceHolder ph = (PlaceHolder)e.Row.FindControl("ph");
        TextBox tb = new TextBox();
        tb.ID = "txtID";
        ph.Controls.Add(tb);
    }
}
protected void GridView1_RowCreated(object sender, GridViewRowEventArgs e)
{

}
protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e)
{
    if (e.CommandName == "AddNewRow")
    {
        AddNewRow();
    }
    else if (e.CommandName == "Save_Click")
    {
        int rowindex = Int32.Parse(e.CommandArgument.ToString());
        PlaceHolder ph = (PlaceHolder)GridView1.Rows[rowindex].FindControl("ph");
        TextBox tbID = ph.FindControl("txtID") as TextBox;
        string text=tbID.Text;
    }
}
share|improve this question
iam getting error at tbID.Text as Object as "Object reference not set to an instance of an object." means text box control is not finding – sree Jan 27 at 11:26
Exact duplicate: stackoverflow.com/questions/14546650/… – Simon Whitehead Jan 27 at 11:27
@sree You seem to love re-posting. Please don't. Edit your question in stead if it needs changes. – Gert Arnold May 16 at 9:40

1 Answer

u try adding controls to gridview in the gridview_RowCreated event

protected void GridView1_RowCreated(object sender, GridViewRowEventArgs e)
        {`enter code here`
            if (e.Row.RowType == DataControlRowType.Footer)
            {
                TextBox txt = new TextBox();
                txt.ID = "txt_Name";
                e.Row.Cells[0].Controls.Add(txt);

                LinkButton lnk = new LinkButton();
                lnk.Text = "Save";
                lnk.CommandName = "lnkSave";
                e.Row.Cells[1].Controls.Add(lnk);
            }

and try to get the textbox value when the save button is clicked

 protected void Btn_Save_Click(object sender, EventArgs e)
    {

        GridViewRow row = GridView1.FooterRow;
        TextBox txt = (TextBox)row.FindControl("txt_Name");
        string textvalue=txt.Text;// this will give the value from textbox in the footer row
     }

Hope this will help u Cheers

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.