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

ASP.NET中頁面傳值的幾種方法

編輯:關於ASP.NET

1、表單提交,

<form action= "target.aspx" method = "post" name = "form1">
<input name = "param1" value = "1111"/>
<input name = "param2" value = "2222"/>
</form>
....
form1.submit();
....

此種方在ASP。NET中無效,因為ASP。NET的表單總是提交到自身頁面,如果要提交到別一頁面,需要特殊處理。

2、<A href="target.aspx?param1=1111&param2=2222">鏈接地址傳送</A>

接收頁面: string str = Request["param1"]

3、Session共享

發送頁面:Session("param1") = "1111";

按收頁面  string str = Session("param1").ToString();

4、Application共享

發送頁面: Application("param1") = "1111";

按收頁面: string str = Application("param1").ToString();

此種方法不常使用,因為Application在一個應用程序域范圍共享,所有用戶可以改變及設置其值,故只應用計數器等需要全局變量的地方。

5、Cookie

6、Response.Redirect()方式

Response.Redirect("target.aspx?param1=1111&param2=2222")

接收頁面: string str = Request["param1"]

7、Server.Transfer()方式。

Server.Transfer("target.aspx?param1=1111&param2=2222")

接收頁面: string str = Request["param1"]

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