Upendra
Upendra

Reputation: 61

Cannot get TextBox value OnRowUpdating

I'm trying to Update Gridview record. In the code given below I'm not getting "txtChangeQuantity" textbox value in GridView1_RowUpdating updating event. It just shows an empty string. What am I missing here?

TextBox tb = row.Cells[2].FindControl("txtChangeQuantity") as TextBox;
                string a = tb.Text;

a is ""

 <asp:GridView ID="GridView1" runat="server" CellPadding="4" ForeColor="#333333" GridLines="None" AutoGenerateColumns="False" Width="450px" 
            DataKeyNames="ItemID" OnRowDeleting="GridView1_RowDeleting" OnRowEditing="GridView1_RowEditing" OnRowUpdating="GridView1_RowUpdating">
            <AlternatingRowStyle BackColor="White" />
            <Columns>
                <asp:BoundField DataField="ItemName" HeaderText="Name"  ReadOnly="true" />
                <asp:BoundField DataField="Price" HeaderText="Unit Price"  ReadOnly="true" />

                 <asp:TemplateField>
   <ItemTemplate>
      <asp:Label ID="lbltxtChangeQuantity" runat="server" Text='<%# Eval("Quantity") %>' />
   </ItemTemplate>
                    <EditItemTemplate>
                        <asp:TextBox ID="txtChangeQuantity" runat="server" Text='<%# Eval("Quantity") %>' />
                    </EditItemTemplate>
</asp:TemplateField>
                <asp:TemplateField>
   <ItemTemplate>
      <asp:Label ID="Label1" runat="server" Text='<%# String.Format("{0:c}", ((double)Eval("Price"))*((int)Eval("Quantity"))) %>' />
   </ItemTemplate>
</asp:TemplateField>
               <asp:CommandField ShowEditButton="true" />


                 <asp:TemplateField>
                        <ItemTemplate>
                            <asp:LinkButton ID="lnkdelete" runat="server" CommandName="Delete" >Delete</asp:LinkButton>
                        </ItemTemplate>
               </asp:TemplateField>


            </Columns>
            <FooterStyle BackColor="#990000" Font-Bold="True" ForeColor="White" />
            <HeaderStyle BackColor="#990000" Font-Bold="True" ForeColor="White" />
            <PagerStyle BackColor="#FFCC66" ForeColor="#333333" HorizontalAlign="Center" />
            <RowStyle BackColor="#FFFBD6" ForeColor="#333333" />
            <SelectedRowStyle BackColor="#FFCC66" Font-Bold="True" ForeColor="Navy" />
            <SortedAscendingCellStyle BackColor="#FDF5AC" />
            <SortedAscendingHeaderStyle BackColor="#4D0000" />
            <SortedDescendingCellStyle BackColor="#FCF6C0" />
            <SortedDescendingHeaderStyle BackColor="#820000" />
        </asp:GridView>


protected void Page_Load(object sender, EventArgs e)
        {
            if (!Page.IsPostBack)
            {
                BindGrid();
            }
        }

        private void BindGrid()
        {

            if (Session["CartItems"] != null)
            {
                List<ItemModel> itemList = (List<ItemModel>)Session["CartItems"];
                GridView1.DataSource = itemList;
                GridView1.DataBind();
            }

        }



        protected void GridView1_RowEditing(object sender, GridViewEditEventArgs e)
        {
            GridView1.EditIndex = e.NewEditIndex;
            BindGrid();
        }

        protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)
        {
            RepItem = new ItemRepository();
            string val = e.Keys["ItemID"].ToString();
            if (Session["CartItems"] != null)
            {

                GridViewRow row = (GridViewRow)GridView1.Rows[e.RowIndex];
                List<ItemModel> itemList = (List<ItemModel>)Session["CartItems"];

                TextBox tb = row.Cells[2].FindControl("txtChangeQuantity") as TextBox;
                string a = tb.Text;

                GridView1.DataSource = itemList;
                GridView1.DataBind();
            }
        }

Upvotes: 2

Views: 300

Answers (2)

sathish
sathish

Reputation: 71

Try this.....

string test = (GridView1.Rows[row].FindControl("txtChangeQuantity") as TextBox).Text

Upvotes: 1

Genish Parvadia
Genish Parvadia

Reputation: 1455

use this findcontrol code in gridview.

string tb = ((TextBox)GridView1.Rows[rowIndex].FindControl("txtChangeQuantity")).Text

your problem is textbox id lbltxtChangeQuantity and change it txtChangeQuantity

Upvotes: 2

Related Questions