简体   繁体   English

无法从itemtemplate中的文本框中获取文本框值

[英]Cannot get textbox value from textbox in itemtemplate

The quantity (quantityWanted in DB) in textbox is loaded via Eval() method from Basket DB table. 文本框中的数量(dataWanted in DB)是通过Basket DB表中的Eval()方法加载的。 What I want to achieve is that when I change quantity manually and click update the quantity for that record will be updated and then grid will be reloaded. 我想要实现的是,当我手动更改数量并单击更新时,将更新该记录的数量,然后重新加载网格。 I seem unable to retrieve value of that textbox in code behind. 我似乎无法在后面的代码中检索该文本框的值。

I am aware of FindControl() method which is used to get value from controls within itemtemplate but I don't know how to use it here. 我知道FindControl()方法,它用于从itemtemplate中的控件获取值,但我不知道如何在这里使用它。

The tried below but always get nullReferenceException 尝试下面但总是得到nullReferenceException

TextBox txt = (TextBox)GridView2.FindControl("txtQuantityWanted");
int _quantity = Convert.ToInt16(txt.Text);

Note: button is there but does nothing. 注意:按钮在那里,但什么也没做。

在此输入图像描述

<ItemTemplate>        
    <asp:TextBox runat="server" ID="txtQuantityWanted" Text='<%# Eval("quantityWanted") %>' ></asp:TextBox>
    <asp:LinkButton ID="LinkButton11" runat="server" CommandName="update" CommandArgument='<%# Eval("coffeeName") + ";" + Eval("datetimeAdded")  %>' >Update</asp:LinkButton>
    <asp:Button ID="Button21" runat="server" Text="Button" CommandName="edit" />
</ItemTemplate> 

<asp:TemplateField HeaderText="Total [£]">
    <ItemTemplate>
        <asp:Label id="lblItemTotal" runat="server" Text='<%# String.Format("{0:C}", Convert.ToInt32(Eval("quantityWanted"))* Convert.ToDouble(Eval("price"))) %>' ></asp:Label> 
        <asp:LinkButton ID="LinkButton1" runat="server" CommandName="remove" CommandArgument='<%# Eval("coffeeName") + ";" + Eval("datetimeAdded") %>' >Remove</asp:LinkButton>
    </ItemTemplate> 
</asp:TemplateField>

C# code: C#代码:

protected void GridView2_RowCommand(object sender, GridViewCommandEventArgs e)
{
    // .....
    else if (e.CommandName == "update")
    {
        string params = Convert.ToString(e.CommandArgument);
        string[] arg = new string[2];
        arg = params.Split(';');
        name = Convert.ToString(arg[0]);
        datetimeAdded = Convert.ToString(arg[1]);

        const string strConn = @"Data Source=.\SQLEXPRESS;AttachDbFilename=L:\ASP.NET\Exercise1\Exercise1\Exercise1\App_Data\ASPNETDB.MDF;Integrated Security=True;Connect Timeout=30;User Instance=True";

        DataSet ds = new DataSet("Employees");
        SqlConnection connection = new SqlConnection(strConn);

        // Here I need value from textbox to replace 11
        SqlCommand abc = new SqlCommand("UPDATE Basket SET quantityWanted = 11 WHERE coffeeName LIKE '%" + name + "%' AND datetimeAdded LIKE '" + datetimeAdded + "' ", connection);
        connection.Open();
        int ii = abc.ExecuteNonQuery();
        connection.Close();
    }
}

Use GridView.Rows collection to find control. 使用GridView.Rows集合来查找控件。 You can pass the index of row in rows collection indexer. 您可以传递行集合索引器中的行索引。

TextBox txt = (TextBox)GridView2.Rows[0].FindControl("txtQuantityWanted");

You must pass the row index as well,Your code will look like this 您也必须传递行索引,您的代码将如下所示

TextBox txt = (TextBox)GridView2.Rows[0].FindControl("txtQuantityWanted");

I hope it will work for you. 我希望它对你有用。

  Control ctrl = e.CommandSource as Control;  

   if (ctrl != null)    
   {    
       GridViewRow gvRow = ctrl.Parent.NamingContainer as GridViewRow;     

       TextBox txt= (TextBox)gvRow.FindControl("txtQuantityWanted"); 
   }

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM