2

只需一个常规值,您就可以编写类似

  protected void GridView1_SelectedIndexChanged(Object sender, EventArgs e)
{
    GridViewRow email = GridView1.SelectedRow;
    txtbox.Text = email.Cells[5].Text;

}

但是,我想用 gridview 中的文本框控件的值填充该文本框。我有一个行列表,根据我选择的行,该文本框将填充该控件值。任何帮助/建议将不胜感激。

4

4 回答 4

1

试试下面的代码。

TextBox tb = GridView1.SelectedRow.FindControl("textboxId") as TextBox;
textbox.Text = tb.Text;
于 2012-04-30T13:54:55.307 回答
1

试试这个:

GridView1.RowCommand += GridView1_RowCommand;
private void GridView1_RowCommand(object sender, System.Web.UI.WebControls.GridViewCommandEventArgs e)
{
        if (e.CommandName == "Select")
        {
            int index = Convert.ToInt32(Convert.ToString(e.CommandArgument));
            GridViewRow row = GridView1.Rows[index];
            this.NameTextBox.Text = Server.HtmlDecode(row.Cells[1].Text);

        }

}
于 2012-04-30T13:54:55.943 回答
1

我建议为此使用数据键。这比使用单元格索引要容易得多,也可靠得多:

<asp:GridView ID="Gridview1" runat="server" DataKeyNames="Column1, Column2" ...>

然后,在代码隐藏中,您可以访问如下值:

protected void GridView1_SelectedIndexChanged(Object sender, EventArgs e)
{
    GridViewRow email = GridView1.SelectedRow;
    txtbox.Text = (string)GridView1.DataKeys[email.RowIndex]["Column1"];    
}
于 2012-04-30T14:10:40.867 回答
0

您可以在此处找到更好的代码,了解如何使用表单的文本框值填充 gridview。 http://sharepoint-2010-world.blogspot.in/2013/10/populating-grid-with-form-values.html

于 2013-11-12T07:48:48.913 回答