php不通过url传值,JSP_2个页面间不通过Session与url的传值方式,下面是全部代码,已经编译通 - phpStudy...

2个页面间不通过Session与url的传值方式

下面是全部代码,已经编译通过。

Chuandi(传递)是名字空间

WebForm1:

WebForm1

using System;

namespace chuandi

{

public class WebForm1 : System.Web.UI.Page

{

protected System.Web.UI.WebControls.TextBox TextBox1;

protected System.Web.UI.WebControls.Button Button1;

public string Text1

{

get

{

return this.TextBox1.Text;

}

}

private void Page_Load(object sender, System.EventArgs e)

{}

override protected void OnInit(EventArgs e)

{

InitializeComponent();

base.OnInit(e);

}

private void InitializeComponent()

{

this.Button1.Click += new System.EventHandler(this.Button1_Click);

this.Load += new System.EventHandler(this.Page_Load);

}

private void Button1_Click(object sender, System.EventArgs e)

{

Server.Transfer("WebForm2.aspx");

}

}

}

WebForm2:

WebForm2

Label

using System;

namespace chuandi

{

public class WebForm2 : System.Web.UI.Page

{

protected System.Web.UI.WebControls.Button Button1;

protected System.Web.UI.WebControls.Label Label1;

public chuandi.WebForm1 wf1;

private void Page_Load(object sender, System.EventArgs e)

{

if(!IsPostBack)

{

wf1=(chuandi.WebForm1)Context.Handler;

Label1.Text="上页传来的是:"+wf1.Text1;

}

}

override protected void OnInit(EventArgs e)

{

InitializeComponent();

base.OnInit(e);

}

private void InitializeComponent()

{

this.Button1.Click += new System.EventHandler(this.Button1_Click);

this.Load += new System.EventHandler(this.Page_Load);

}

private void Button1_Click(object sender, System.EventArgs e)

{

Server.Transfer("WebForm1.aspx");

}

}相关阅读:

怎样在Windows 7系统中定制一个简单个性化时钟

JAVASCRIPT车架号识别/验证函数代码 汽车车架号验证程序

ASP.NET MasterPage 中图片路径的解决办法

SQL语言中游标的使用技巧

ASP应用:用stream读文件

Oracle中的带参数的视图

开发版:Linux Mint 5.0 RC2发布

JavaScript中toLocaleString函数

特殊数据的js四舍五入问题

从IIS的ASP迁移到APACHE的PHP的方法

Dedecms实时更新热门关键字!

JBuilder2005实战JSP之特殊页面(3)

PHP读取汉字点阵数据

Linux下载工具wget和axel简介

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值