明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺(tái)!

ASP.NET中使用Server.Transfer()方法在頁(yè)間傳值

[摘要]ASP.NET Server.Transfer()是在兩個(gè)頁(yè)面之間進(jìn)行傳值的好方法,從A頁(yè)面Transfer到B頁(yè)面時(shí),就可以在B頁(yè)面通過(guò)Context.Handler獲得A頁(yè)面的一個(gè)類的實(shí)例,從而在B調(diào)用A的各個(gè)成員對(duì)象。下面的示例建立了WebForm1和WebForm2,通過(guò)Server.Tr...
ASP.NET Server.Transfer()是在兩個(gè)頁(yè)面之間進(jìn)行傳值的好方法,從A頁(yè)面Transfer到B頁(yè)面時(shí),就可以在B頁(yè)面通過(guò)Context.Handler獲得A頁(yè)面的一個(gè)類的實(shí)例,從而在B調(diào)用A的各個(gè)成員對(duì)象。

下面的示例建立了WebForm1和WebForm2,通過(guò)Server.Transfer()方法演示在WebForm2中讀取WebForm1的文本框、讀取屬性、通過(guò)Context傳值、調(diào)用WebForm1的方法等:

WebForm1上放置一個(gè)TextBox1和一個(gè)Button1,程序如下:

public class WebForm1 : System.Web.UI.Page
{
protected System.Web.UI.WebControls.TextBox TextBox1;
protected System.Web.UI.WebControls.Button Button1;

private void Page_Load(object sender, System.EventArgs e)
{
Context.Items.Add("Context","Context from Form1");
}
public string Time
{
get{return DateTime.Now.ToString();}
}
public string TestFun()
{
return "Function of WebForm1 Called";
}
#region Web 窗體設(shè)計(jì)器生成的代碼
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);

}
#endregion

private void Button1_Click(object sender, System.EventArgs e)
{
Server.Transfer("WebForm2.aspx", true);
}


在WebForm2上放置一個(gè)Literal1控件,程序如下:

public class WebForm2 : System.Web.UI.Page
{
protected System.Web.UI.WebControls.Literal Literal1;

private void Page_Load(object sender, System.EventArgs e)
{
string strTxt="";
WebForm1 oForm=(WebForm1)this.Context.Handler;
strTxt+="Value of Textbox:"+Request.Form["TextBox1"] +"<br>";
strTxt+="Time Property:"+oForm.Time +"<br>";
strTxt+="Context String:"+Context.Items["Context"].ToString() +"<br>";
strTxt+=oForm.TestFun() +"<br>";
Literal1.Text =strTxt;
}

#region Web 窗體設(shè)計(jì)器生成的代碼
override protected void OnInit(EventArgs e)
{
InitializeComponent();
base.OnInit(e);
}

private void InitializeComponent()
{
this.Load += new System.EventHandler(this.Page_Load);

}
#endregion
}

補(bǔ)充說(shuō)明,就是Transfer方法的第二個(gè)參數(shù)指示是否保留頁(yè)面的Form和QuerryString的值,你可以試著把它設(shè)為False,則在WebForm2中將讀不到TextBox1的值。