以下はすべてのコードであり、すでに通過しています。
Chuandi(传递)是名字空间
WebForm1:
<%@ ページ言語="c#" コードビハインド="WebForm1.aspx.cs" Inherits="chuandi.WebForm1" %>
<HTML>
<頭>
<title>Webフォーム1</title>
</HEAD>
<本文>
<form id="Form1" Method="post" runat="server">
<asp:TextBox id="TextBox1" runat="server"></asp:TextBox>
<asp:Button id="Button1" runat="server" Text="传"></asp:Button>
</form>
</body>
</HTML>
システムを使用する;
名前空間chuandi
{
パブリック クラス WebForm1 : System.Web.UI.Page
{
protected System.Web.UI.WebControls.TextBox TextBox1;
protected System.Web.UI.WebControls.Button Button1;
パブリック文字列 Text1
{
得る
{
this.TextBox1.Text を返します。
}
}
private void Page_Load(オブジェクト送信者、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 += 新しい System.EventHandler(this.Page_Load);
}
private void Button1_Click(オブジェクト送信者、System.EventArgs e)
{
Server.Transfer("WebForm2.aspx");
}
}
}
ウェブフォーム2:
<%@ ページ言語="c#" コードビハインド="WebForm2.aspx.cs" Inherits="chuandi.WebForm2" %>
<%@ 参照ページ="WebForm1.aspx" %>
<HTML>
<頭>
<title>Webフォーム2</title>
</HEAD>
<本文>
<form id="Form1" Method="post" runat="server">
<asp:Label id="Label1" runat="server">ラベル</asp:Label>
<asp:Button id="Button1" runat="server" Text="返"></asp:Button>
</form>
</body>
</HTML>
システムを使用する;
名前空間chuandi
{
パブリック クラス WebForm2 : System.Web.UI.Page
{
protected System.Web.UI.WebControls.Button Button1;
protected System.Web.UI.WebControls.Label Label1;
パブリックchuandi.WebForm1 wf1;
private void Page_Load(オブジェクト送信者、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 += 新しい System.EventHandler(this.Page_Load);
}
private void Button1_Click(オブジェクト送信者、System.EventArgs e)
{
Server.Transfer("WebForm1.aspx");
}
}