在Webform(ASP.NET)中将选定的行从一个GridView传输到另一个GridView

时间:2018-10-01 11:23:05

标签: c# asp.net

我有两个Gridview控件。在第一个示例中,我使用SQL绑定了存储过程中的数据,并希望将选定的行从Gridview1导出到GridView2。

这是我用于绑定Gridview1数据的代码:

// Load the data of [Student_Registration] store procedured
// from SQL to gridview1
sqlcom.CommandType = CommandType.StoredProcedure;
sqlcom.CommandText = "Student_Registration";
sqlcom.Parameters.Add("@SSID", SqlDbType.Int).Value = Int32.Parse(LblSubjectStudyId.Text.Trim());
sqlcom.Connection = con;
try
{
    con.Open();
    GridView1.EmptyDataText = "No Records Found";
    GridView1.DataSource = sqlcom.ExecuteReader();
    GridView1.DataBind();
}
catch (Exception ex)
{
    throw ex;
}
finally
{
    con.Close();
    con.Dispose();
}

我该怎么做?

1 个答案:

答案 0 :(得分:-1)

好的,首先,您需要在模板模板中添加一个复选框控件,然后必须在页面上放置一个导出按钮。

单击按钮,使用选中项的值在网格视图中找到所有选定的行,然后将整个行转换为数据行并将其添加到表中。

现在将此数据表绑定到gridview源。