1
如何將網格視圖的值從一個頁面傳遞到另一個頁面?這是我的代碼:如何將GridView的值從一個頁面傳遞給另一個asp.net c#中的另一個頁面?
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType != DataControlRowType.Header)
{
// // e.Row.Cells[0].Text = "<a href=" + "javascript:window.open('http://www.google.com')" + " >" + e.Row.Cells[0].Text + "</a>";
e.Row.Cells[0].Text = "<a id=\"linkres\" CssClass=\"dgrid\" runat =\"server\" href= \"javascript:window.open('Preview.aspx'),_self\" >" + e.Row.Cells[0].Text + "</a>";
}
}
我需要在GridView上傳遞所選項目的值,然後檢索到另一個頁面。
如果他是在他的鏈接應該認真考慮有關在查詢字符串 – 2013-03-04 01:31:42
我與加布裏埃爾通過這個值,存儲什麼實際上應使用值「會話」狀態中的「頁面」狀態是問題的處方。 – Snixtor 2013-03-04 01:42:36
+1列出了選項。您還可以添加將其存儲在表單變量中並將其發佈到其他頁面。 – 2013-03-04 01:44:17