使用Server
◆在頁面裡添加必要的控件
◆創建返回值的Get屬性過程
◆創建可以返回表單的按鈕和鏈接按鈕
◆在按鈕單擊事件處理程序中調用Server
◆在第二個頁面中
以下代碼綜合實現上述步驟過程的代碼
源頁面代碼
把以下的代碼添加到頁面中
public string Name
{
get
{
return TextBox
}
}
public string EMail
{
get
{
return TextBox
}
}
然後調用Server
private void Button
(object sender
{
Server
}
目標頁面代碼
(object sender
{
file://create instance of source web form
WebForm
file://get reference to current handler instance
wf
Label
Label
}
總結
本文講述了使用不同的方法實現了ASP
[
From:http://tw.wingwit.com/Article/program/net/201311/15225.html