ASP.NET 頁面傳值常用方法總結

來源:互聯網
上載者:User
一、表單提交:

<formaction= "target.aspx" method = "post" name ="form1"> <input name = "param1" value ="1"/> <input name = "param2" value ="2"/> </form> .... form1.submit(); ....

這種方法一般用於html頁面中,不用於asp.net中,因為asp.net的表單總是提交到自身頁面。

二、A標籤的連結方式

<Ahref="target.aspx?param1=1¶m2=2">連結地址傳送</A> 接收頁面: string str = Request["param1"]

三、Session共用

發送頁面:Session("param1") = "1"; 按收頁面 string str =Session("param1").ToString();

四、Application共用

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

此種方法不常使用,因為Application在一個應用程式定義域範圍共用,所有使用者可以改變及設定其值,故只應用計數器等需要全域變數的地方。

五、Cookie

六、Response.Redirect()方式

Response.Redirect("target.aspx?param1=1¶m2=2") 接收頁面: stringstr = Request["param1"]

七、Server.Transfer()方式

Server.Transfer("target.aspx?param1=1¶m2=2") 接收頁面: stringstr = Request["param1"]
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.