2

在我的页面的加载方法中,我想将模板字段中的文本框设置为一个值。

这是我当前的源代码,显示了我的模板字段文本框项目“txtQuan”:

    <asp:TemplateField>
              <ItemTemplate>
              <asp:Label ID="lblTotalRate" Text="Qty:" runat="server" />
              <asp:TextBox ID="txtQuan" Height="15" Width="30" runat="server" />

              <asp:Button ID="addButton" CommandName="cmdUpdate" Text="Update Qty"  OnClick="addItemsToCart_Click" runat="server" />
             </ItemTemplate>
             </asp:TemplateField>

这就是我尝试设置 TextBox 值的方式:

 string cartQty = Qty.ToString();

 ((TextBox)(FindControl("txtQuan"))).Text = cartQty;

我目前收到“nullReferenceException 错误”。

4

2 回答 2

5

使用 RowDataBound 事件来做到这一点。你可以在网上查到。该事件处理程序的参数使您可以轻松访问每一行。您还可以使用循环遍历行var rows = myGridView.Rows

var rows = myGridView.Rows;
foreach(GridViewRow row in rows)
{
    TextBox t = (TextBox) row.FindControl("txtQuan");
    t.Text = "Some Value";
}

对于事件:GridView RowDataBound

  protected void myGridView_RowDataBound(object sender, GridViewRowEventArgs e)
  {

    if(e.Row.RowType == DataControlRowType.DataRow)
    {
        TextBox t = (TextBox) e.Row.FindControl("txtQuan");
        t.Text = "Some Value";    
    }   
  }
于 2013-03-29T03:20:32.343 回答
2
((TextBox)grdviewId.Row.FindControl("txtQuan")).Text=cartQty;
于 2013-03-29T02:57:36.747 回答