在第一个页中:session["text"] = t_page1.text
在第二个页pageload事件中写:t_page2.text = session["text"]

解决方案 »

  1.   

    在第一页用    Response.Redirect("/GKCX/chaxunRequst.aspx?RNO="+txt3.Text.Trim());
    其中/GKCX/chaxunRequst.aspx为第二页路径名
    RNO为所传参数
    txt3.text.trim()所传文本
    在第二页的load中用  txt3.Text=Request.QueryString["RNO"].ToString().Trim();便可显示
      

  2.   

    第一页按钮中写:
    string str = this.Text1.Text.Tostring();
    this.Session.Add("aaa",str);
    第二页的装入中写:
    this.Text2.Text = Session["aaa"].Tostring();就OK了。
      

  3.   

    第一页按钮事件使用
    this.Server.Transfer("2.aspx");
    第二页
    page_load
    if(!IsPostBack)
    this.Text2.Text = Request.Form["Text1"].ToString();
      

  4.   

    session 和查询字符川都可以
      

  5.   

    在第一页:Response.Write("<script language=javascript>window.open('yourSecondPage.aspx?yourValue=" + TextBox1.Text + "');");在第二页: 这样取值:  TextBox2.Text = Request.QueryString["yourValue"].ToString();
      

  6.   

    第一页按钮事件使用
    response.redirect("2.aspx?id=" & textbox1.text)
    第二页page_load实践中加载
    textbox1.text=request("id")
      

  7.   

    另外用Session和Cache也可以实现