使用会话发送gridview选定行

时间:2014-03-22 11:47:37

标签: c# asp.net session gridview row

我想在C#中使用Session发送一个gridview选定的行。

我尝试保存这样的行:

 protected void GridView1_SelectedIndexChanged(object sender, EventArgs e)
    {
        Session["try"] = GridView1.SelectedRow;
        Response.Redirect("ProjectInformation.aspx");
    }

然后,在ProjectInformation.aspx中,我想从Session中检索行,但我不知道该怎么做。 有人可以帮忙吗?

1 个答案:

答案 0 :(得分:2)

你可以在重定向页面的页面加载中试试这个..

GridViewRow a = (GridViewRow)Session["try"];

提供标题文件using System.Web.UI.WebControls;