下面是全部程式碼,已經編譯通過。
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");
}
}