0

我试图在我的列表视图中简单地阅读一个文本框。这是一个购物车,当输入“新数量”时,我需要手动编辑 cookie。我正在尝试使用我为下拉框所做的,但我猜是因为我手动绑定数据而不是使用数据源是阻止我访问文本框中值的区别。

奇怪的是它没有得到空值,只是没有得到任何价值?我在标签中添加了其他东西,所以我知道这不是我所说的标签。我在网上找到的所有结果都是调用无效的东西,例如listview1.items[0].subitems[0],这些不是我可以调用的成员。

任何帮助是极大的赞赏

按钮处理程序

 protected void editQ_Click(Object sender, CommandEventArgs e)
    {

        LinkButton lbSender = (LinkButton)sender;
        TextBox tb = (TextBox)lbSender.FindControl("tb1"); // this is the textbox
        productTableAdapter ad = new productTableAdapter();
        int idIn = int.Parse(e.CommandArgument.ToString());
        HttpCookie c = Request.Cookies["cart"];
        Label2.Text = tb.Text.ToString();
        // Label2.Text = tb.Text; doesn't work either.
        if (tb == null)
        {
            Label2.Text = "NULL ERROR";
        }

           ....



    }

列表显示

<asp:ListView ID="ListView1" runat="server" DataKeyNames="productNo" 
         >
        <AlternatingItemTemplate>
            <span style="">productNo:
            <asp:Label ID="productNoLabel" runat="server" Text='<%# Eval("productNo") %>' />
            <br />
            Name:
            <asp:Label ID="productNameLabel" runat="server" Text='<%# Eval("productName") %>' />
            <br />
            Quantity:
            <asp:Label ID="productQuantityLabel" runat="server" Text='<%# Eval("Quantity") %>' />

           <asp:TextBox id = "tb1" runat="server"></asp:TextBox>
           <asp:LinkButton id="editQ" runat="server" CommandArgument='<%# Eval("productNo") %>' onCommand ="editQ_Click">Change Quantity</asp:LinkButton>

            <br />
            price:
            <asp:Label ID="priceLabel" runat="server" Text='<%# Eval("price") %>' />

            <br />
            <asp:Image ID = "img" runat="server" height = "150" ImageUrl='<%# Eval("imgURL")%>'></asp:Image>

            <br />
<br /></span>
        </AlternatingItemTemplate>
4

1 回答 1

2

FindControl用于在容器中查找控件。从您的标记来看,LinkBut​​ton 不是您的文本框的容器。您的文本框在您的 ListView 中

试试这个,虽然不确定

TextBox tb = (TextBox)lbSender.NamingContainer.FindControl("tb1"); 
于 2012-12-07T12:19:05.383 回答