あるページから別のページにグリッド ビューの値を渡すにはどうすればよいですか? これは私のコードです:
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 に渡してから、別のページに取得する必要があります。