要传值的页面:
///存储多个界面传递
Session["sc"] = TextBox1.Text;
///跳转去另一个界面传递值
Response.RedirectPermanent("GO.aspx?cc="+this.TextBox1.Text);
被传值的页面
this.Label1.Text = Session["sc"].ToString();
this.Label1.Text = Request["cc"];
这样我们把之前的页面的值传过来了 用于登录最平常
第一次写 多多包涵