博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ASP.Net中传递参数的常见方法
阅读量:5148 次
发布时间:2019-06-13

本文共 1351 字,大约阅读时间需要 4 分钟。

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"];这样可以得到参数值。
第二种ASP.Net参数传递方法:
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"];
第三种ASP.Net参数传递方法:

send.aspx:

protected void Button1_Click(object sender, EventArgs e)
    {
        Session["username"] = "honge";

        Request.Redirect("Default2.aspx");

    }
receive.aspx:

string username = Session["username"];这样可以得到参数值。

第四种ASP.Net参数传递方法:

send.aspx:
protected void Button1_Click(object sender, EventArgs e)
    {
        Application["username"] = "honge";
        Request.Redirect("Default2.aspx");
    }
receive.aspx:
string username = Application["username"];这样可以得到参数值。

第五种ASP.Net参数传递方法:

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);这样可以得到参数值。
        }

 

 

原文地址:

转载于:https://www.cnblogs.com/wancy86/archive/2011/10/12/2208768.html

你可能感兴趣的文章
使用UML进行项目开发
查看>>
Windows phone 8.1布局控件
查看>>
easyui中表格列之间的换位05
查看>>
SSL-ZYC 采购特价商品【SPFA】
查看>>
软工作业 2:时事点评-红芯浏览器事件
查看>>
网页里动态加载js
查看>>
2.微信开发原理
查看>>
洛谷 P1309 瑞士轮 题解
查看>>
我踩过的听过的那些坑
查看>>
关于rk3288烧写后不能启动的问题
查看>>
关于C++的operator的学习笔记
查看>>
python(函数初识)
查看>>
[转]使用 System.IO 和 Visual C# .NET 读取文本文件
查看>>
ASP.NET事件模型
查看>>
window 常用cmd 命令
查看>>
NSString类-字符串
查看>>
MySql 游标笔记
查看>>
vim 穿越时空
查看>>
如何管理Entity Framework中得事务
查看>>
solrcloud线上创建collection,修改默认配置
查看>>