ASP.NET页面传值

一. 使用QueryString变量
    QueryString是一种非常简单也是使用比较多的一种传值方式,但是它将传递的值显示在浏览器的地址栏中,如果是传递一个或多个安全性要求不高或是结构简单的数值时,可以使用这个方法。

         Response.Redirect( "target.aspx?param1=hello&param2=hi ")
        接收页面:   string   str   =   Request.QueryString["param1"];
                               string   str1   = Request.QueryString["param2];
二.使用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页面:
Code:
<asp:Button ID="Button1" Runat="server" Text="PostToAnotherPage" PostBackUrl="~/Default2.aspx" />

default2.aspx页面:
Code
 if (PreviousPage != null)
 {
    TextBox textBox1 = (TextBox)PreviousPage.FindControl("TextBox1");
    Response.write(textBox1.Text );
 }

 六.javascript传值

父页面:

var result = window.showModalDialog('XXX.aspx', '', 'dialogWidth:429px;dialogHeight:200px;location:no,menubar:no,toolbar:no,status:no');

if (result) {......}

子页面:

window.returnValue = document.getElementById("TextArea").value;

 

posted @ 2010-03-22 18:33  qinyi  阅读(207)  评论(0编辑  收藏  举报