لا داعي للقلق بشأن هذا الأمر.
Chuandi(传递)是名字空间
WebForm1:
<%@ لغة الصفحة = "c#" Codebehind = "WebForm1.aspx.cs" Inherits = "chuandi.WebForm1" %>
<أتش تي أم أل>
<الرأس>
<title>WebForm1</title>
</الرأس>
<الجسم>
<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>
باستخدام النظام؛
مساحة الاسم chuandi
{
الفئة العامة WebForm1: System.Web.UI.Page
{
System.Web.UI.WebControls.TextBox TextBox1 محمي ؛
System.Web.UI.WebControls.Button Button1 المحمي؛
نص السلسلة العامة 1
{
يحصل
{
إرجاع this.TextBox1.Text;
}
}
Page_Load باطلة خاصة (مرسل الكائن، System.EventArgs e)
{}
تجاوز OnInit المحمي باطلة (EventArgs e)
{
InitializeComponent();
base.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" %>
<أتش تي أم أل>
<الرأس>
<title>WebForm2</title>
</الرأس>
<الجسم>
<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>
باستخدام النظام؛
مساحة الاسم chuandi
{
الفئة العامة WebForm2: System.Web.UI.Page
{
System.Web.UI.WebControls.Button Button1 المحمي؛
System.Web.UI.WebControls.Label Label1 محمي؛
public chuandi.WebForm1 wf1;
Page_Load باطلة خاصة (مرسل الكائن، System.EventArgs e)
{
إذا (!IsPostBack)
{
wf1=(chuandi.WebForm1)Context.Handler;
Label1.Text="上页传来的是:"+wf1.Text1;
}
}
تجاوز OnInit المحمي باطلة (EventArgs e)
{
InitializeComponent();
base.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");
}
}