怎么把一个页中的textbox.text传到另一个页的string text

解决方案 »

  1.   

    静态变量get SessionApplicationServer.Transfer保存到数据库,另一页读数据库
    其它就不只知道了
      

  2.   

    request.form("text")
    用post发送
      

  3.   

    在A页面
    Session["temp"]=textbox.text;
    在B页面
    text=Session["temp"].toString();
      

  4.   

    Response.Redirect("index.aspx?keyword='" + textbox.text+ "'");在index.aspx中,用Request.querystring["keyword"]获得