45fan.com - 路饭网

搜索: 您的位置主页 > 电脑频道 > 电脑教程 > 阅读资讯:在ASP.NET中实现页面之间的传参的方法

在ASP.NET中实现页面之间的传参的方法

2016-09-01 17:52:58 来源:www.45fan.com 【

在ASP.NET中实现页面之间的传参的方法

三种方法:QueryString,Session,Server.Transfer

WebForm1.aspx

publicstringname
{

get
{
returntxtName.Text;
}
}


privatevoidbtnSubmit_Click(objectsender,System.EventArgse)
{
Server.Transfer(
"WebForm2.aspx");
}

WebForm2.aspx

privatevoidPage_Load(objectsender,System.EventArgse)
{
WebForm1webForm1;
webForm1
=(WebForm1)Context.Handler;
Response.Write(webForm1.name);
}
 

本文地址:http://www.45fan.com/dnjc/70960.html
Tags: 实现 页面 ASP.NET
编辑:路饭网
关于我们 | 联系我们 | 友情链接 | 网站地图 | Sitemap | App | 返回顶部