一. 使用QueryString变量
QueryString是一种非常简单也是使用比较多的一种传值方式,但是它将传递的值显示在浏览器的地址栏中,如果是传递一个或多个安全性要求不高或是结构简单的数值时,可以使用这个方法。 Response.Redirect( "target.aspx?param1=hellom2") 接收页面: string str = Request.QueryString["param1"]; 二.使用Cookie对象变量(Cookie是存放在客户端的) 设置Cookie: HttpCookie cookie_name = new HttpCookie("name"); cookie_name.Value = Label1.Text; Reponse.AppendCookie(cookie_name); 获取Cookie: string name= Request.Cookie["name"].Value.ToString();三. 使用Session变量(session是存放在的) 设置Session: Session["name"] ="hello"; 获取Session: string name = Session["name"].ToString();四.使用Application 对象变量 Application对象的作用范围是整个全局,也就是说对所有用户都有效。此种方法不常使用,因为Application在一个应用程序域范围共享,所有用户可以改变及设置其值,故只应用计数器等需要全局变量的地方。 设置Application : Application["name"] = ="hello"; 获取Application : string name = Application["name"].ToString();五. PostBackUrl()方法 default.aspx页面:Code1 <asp:Button ID="Button1" Runat="server" Text="PostToAnotherPage" PostBackUrl="~/Default2.aspx" />2default2.aspx页面:Code1 if (PreviousPage != null)2 { 3 TextBox textBox1 = (TextBox)PreviousPage.FindControl("TextBox1");4 Response.write(textBox1.Text );5 }六.使用Server.Transfer方法