程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> 關於ASP.NET >> ASP.NET頁面之間傳遞參數的幾種方法

ASP.NET頁面之間傳遞參數的幾種方法

編輯:關於ASP.NET

       Asp.net頁面之間傳遞參數的幾種方法

      第一種方法:通過URL鏈接地址傳遞

      send.aspx:

      protected void Button1_Click(object sender, EventArgs e)

      {

      Request.Redirect("Default2.aspx?username=honge");

      }

      receive.aspx:

      string username = Request.QueryString["username"];

      這樣可以得到參數值。

      第二種方法:通過post方式

      send.aspx

      receive.aspxstring username = Ruquest.Form["receive"];

      第三種方法:通過session

      send.aspx:

      protected void Button1_Click(object sender, EventArgs e)

      {

      Session["username"] = "honge";

      Request.Redirect("Default2.aspx");

      }

      receive.aspx:

      string username = Session["username"];

      這樣可以得到參數值。

      第四種方法:通過Application

      send.aspx:

      protected void Button1_Click(object sender, EventArgs e)

      {

      Application["username"] = "honge";

      Request.Redirect("Default2.aspx");

      }

      receive.aspx:

      string username = Application["username"];

      這樣可以得到參數值。

      第五種方法:通過Server.Transfer

      send.aspx:

      public string Name

      {

      get

      {

      return "honge";

      }

      }

      protected void Button1_Click(object sender, EventArgs e)

      {

      Server.Transfer("Default2.aspx");

      }

      receive.aspx:

      send d = Context.Handler as send ;

      if (d != null)

      {

      Response.Write(d.Name);這樣可以得到參數值。

      }

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved