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

ASP.NET 頁面之間傳遞參數方法匯總

編輯:ASP.NET基礎
在撰寫之前假設第一個頁面為send.aspx,第二個頁面為receive.aspx
1、通過URL鏈接地址傳遞
(1) send.asp代碼
復制代碼 代碼如下:
protected void Button1_Click(object sender, EventArgs e)
{
Request.Redirect("Default2.aspx?username=honge");
}

(2) receive.aspx代碼
復制代碼 代碼如下:
string username = Request.QueryString["username"];//這樣可以得到參數值。

2、POST方式傳遞
(1) send.asp代碼
復制代碼 代碼如下:
<form id="form1" runat="server" action="receive.aspx" method=post>
<div>
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Button" />
<asp:TextBox ID="username" runat="server"></asp:TextBox>
</div>
</form>

(2) receive.aspx代碼
復制代碼 代碼如下:
string username = Ruquest.Form["receive"];

3、Session方式傳遞
(1) send.asp代碼
復制代碼 代碼如下:
protected void Button1_Click(object sender, EventArgs e)
{
Session["username"] = "honge";
Request.Redirect("Default2.aspx");
}

(2) receive.aspx代碼
復制代碼 代碼如下:
string username = Session["username"];//這樣可以得到參數值。

4、Application方式傳遞
(1) send.asp代碼
復制代碼 代碼如下:
protected void Button1_Click(object sender, EventArgs e)
{
Application["username"] = "honge";
Request.Redirect("Default2.aspx");
}

(2) receive.aspx代碼
復制代碼 代碼如下:
string username = Application["username"];這樣可以得到參數值。

5、使用Server.Transfer進行傳遞
(1) send.asp代碼
復制代碼 代碼如下:
public string Name
{
get {
return "honge";
}
}
protected void Button1_Click(object sender, EventArgs e)
{
Server.Transfer("Default2.aspx");
}

(2) receive.aspx代碼
復制代碼 代碼如下:
send d = Context.Handler as send ;
if (d != null)
{
Response.Write(d.Name);//這樣可以得到參數值。
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved