我正在使用这些代码在上一页的点击搜索按钮的另一页面中打开详细信息。 这些还有其他选择。
ScriptManager.RegisterStartupScript(Page, typeof(Page), "OpenWindow", "Window.Open('Search_Advance.aspx','_blank');", true);
答案 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();
}