如何通过单击上一个按钮中的按钮在另一个页面中的网格视图中显示数据

时间:2015-09-18 09:09:29

标签: c# asp.net webforms

我正在使用这些代码在上一页的点击搜索按钮的另一页面中打开详细信息。 这些还有其他选择。

ScriptManager.RegisterStartupScript(Page, typeof(Page), "OpenWindow", "Window.Open('Search_Advance.aspx','_blank');", true);

1 个答案:

答案 0 :(得分:0)

SqlConnection con=new SqlConnection("connection Strin");
DataSet ds = new DataSet(); 
SqlCommand cmd = new SqlCommand("SEARCH", con); 
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.AddWithValue("@City_Id",DropDownList4.SelectedValue.ToString());
SqlDataAdapter da = new SqlDataAdapter(cmd);
da.Fill(ds);
Session["sessDataSet"] = ds; 
Response.Redirect("Search_Basic.aspx");

然后在Search_Basic.aspx

protected void Page_Load(object sender, Eventargs e)
{
   DataSet ds=(DataSet)Session["sessDataSet"];
   GridViewId.DataSource=ds;
   GridViewId.DataBind();
}