pjx131 2016-04-13 16:49 采纳率: 50%
浏览 1527

关于不同页面间将session的值传到另一个页面的GridView中

搜索按钮在这个页面production.aspx
protected void searchbtn_Click(object sender, EventArgs e)
{
if (searchtb.Text == "")
{
Response.Write("alert('请输入查找的内容!');location.href='production.aspx'");
}
else
{
Session["searchprotype"] = searchddl.SelectedItem.Text;
Session["searchkey"] = searchtb.Text;
Response.Redirect("productionsearch.aspx");

    }
 protected void Page_Load(object sender, EventArgs e)
{
    if (!IsPostBack)
    {
        if (Session["searchkey"].ToString() != "")
        {
            try
            {
                fill();
            }
            catch
            {
                Response.Redirect("../AVSU/production.aspx");
            }
        }
    }
    else
    {
        Response.Redirect("../AVSU/production.aspx");
    }
}
        public void fill()
{
    string select;
    if (Session["searchprotype"].ToString() == "农产品名称")
    {
        select = string.Format("select proid as 编号,proname as 农产品名称,proprice as 价格,pronum as 数量,proaddress as 产地,prodata as 日期,protype as 类型 from tb_production where proname like '%"+Session["searchkey"].ToString()+"%'");
    }
    else if (Session["searchprotype"].ToString() == "农产品类型")
    {
        select = string.Format("select proid as 编号,proname as 农产品名称,proprice as 价格,pronum as 数量,proaddress as 产地,prodata as 日期,protype as 类型 from tb_production where protype like '%"+Session["searchkey"].ToString()+"%'" );
    }
    else
    {
        select = string.Format("select proid as 编号,proname as 农产品名称,proprice as 价格,pronum as 数量,proaddress as 产地,prodata as 日期,protype as 类型 from tb_production where proaddress like '%"+Session["searchkey"].ToString()+"%'" );
    }
    searchgv1.DataBind();
}

请各位帮我看下有什么问题,我在按钮的页面试了下,session的值可以得到,不过到另一个页面就显示不出来了,可是我又找不到哪里出错,拜托各位大神了!

  • 写回答

1条回答

  • threenewbee 2016-04-13 22:53
    关注

    Session["searchprotype"] = searchddl.SelectedItem.Text;
    这里下断点调试下。

    评论

报告相同问题?

悬赏问题

  • ¥50 汇编语言除法溢出问题
  • ¥50 C++实现删除N个数据列表共有的元素
  • ¥15 Visual Studio问题
  • ¥15 state显示变量是字符串形式,但是仍然红色,无法引用,并显示类型不匹配
  • ¥20 求一个html代码,有偿
  • ¥100 关于使用MATLAB中copularnd函数的问题
  • ¥20 在虚拟机的pycharm上
  • ¥15 jupyterthemes 设置完毕后没有效果
  • ¥15 matlab图像高斯低通滤波
  • ¥15 针对曲面部件的制孔路径规划,大家有什么思路吗