ASP.NET实现页面间值传递的几种方法

2009-05-12 21:54:55来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

第一种方法:

通过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

<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>
receive.aspx
string 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"];

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:ASP.NET 2.0的导航控件treeview和menu的实例

下一篇:项目调试时出现用到的一个组件“访问被拒绝”的解决方法