下面是全部代码,已经编译通过。
Chuandi(提交)是名称空间
WebForm1:
<%@ 页面语言="c#" Codebehind="WebForm1.aspx.cs" Inherits="chuandi.WebForm1" %>
<HTML>
<头>
<标题>WebForm1</标题>
</头>
<正文>
<form id="Form1" method="post" runat="server">
<asp:TextBox id="TextBox1" runat="server"></asp:TextBox>
<asp:Button id="Button1" runat="server" Text="传"></asp:Button>
</形式>
</正文>
</HTML>
使用系统;
命名空间传地
{
公共类WebForm1:System.Web.UI.Page
{
受保护的 System.Web.UI.WebControls.TextBox TextBox1;
受保护的 System.Web.UI.WebControls.Button Button1;
公共字符串 Text1
{
得到
{
返回 this.TextBox1.Text;
}
}
私人无效Page_Load(对象发送者,System.EventArgs e)
{}
覆盖 protected void OnInit(EventArgs e)
{
初始化组件();
基.OnInit(e);
}
私有无效InitializeComponent()
{
this.Button1.Click += new System.EventHandler(this.Button1_Click);
this.Load += new System.EventHandler(this.Page_Load);
}
私人无效Button1_Click(对象发送者,System.EventArgs e)
{
Server.Transfer("WebForm2.aspx");
}
}
}
网页表格2:
<%@ 页面语言="c#" Codebehind="WebForm2.aspx.cs" Inherits="chuandi.WebForm2" %>
<%@ 参考页="WebForm1.aspx" %>
<HTML>
<头>
<标题>WebForm2</标题>
</头>
<正文>
<form id="Form1" method="post" runat="server">
<asp:Label id="Label1" runat="server">标签</asp:Label>
<asp:Button id="Button1" runat="server" Text="返回"></asp:Button>
</形式>
</正文>
</HTML>
使用系统;
命名空间传地
{
公共类WebForm2:System.Web.UI.Page
{
受保护的 System.Web.UI.WebControls.Button Button1;
受保护的 System.Web.UI.WebControls.Label Label1;
公共 chuandi.WebForm1 wf1;
私人无效Page_Load(对象发送者,System.EventArgs e)
{
if(!IsPostBack)
{
wf1=(chuandi.WebForm1)Context.Handler;
Label1.Text="上页流行的是:"+wf1.Text1;
}
}
覆盖 protected void OnInit(EventArgs e)
{
初始化组件();
基.OnInit(e);
}
私有无效InitializeComponent()
{
this.Button1.Click += new System.EventHandler(this.Button1_Click);
this.Load += new System.EventHandler(this.Page_Load);
}
私人无效Button1_Click(对象发送者,System.EventArgs e)
{
Server.Transfer("WebForm1.aspx");
}
}