通过session方法传递参数
send.aspx.cs:
protected void Button1_Click(object sender, EventArgs e)
{
Session["username"] = "a";
Request.Redirect("receive.aspx");
}
receive.aspx:
string username = Session["username"];
优点: 1. 使用简单,不仅能传递简单数据类型,还能传递对象。
2. 数据量大小是不限制的。
缺点: 在Session变量存储大量的数据会消耗较多的服务器资源。 |