把以下的代码添加到页面中
public string Name
{
get
{
return TextBox1.Text;
}
}
public string EMail
{
get
{
return TextBox2.Text;
}
}
然后调用Server.Transfer方法
private void Button1_Click
(object sender, System.EventArgs e)
{
Server.Transfer("anotherwebform.aspx");
}
目标页面代码:
private void Page_Load
(object sender, System.EventArgs e)
{
//create instance of source web form
WebForm1 wf1; 我的问题就在这,我具体实现的时候,为什调用不了webform1 这个类呢?
//get reference to current handler instance
wf1=(WebForm1)Context.Handler;
Label1.Text=wf1.Name;
Label2.Text=wf1.EMail;
}
WebForm1 wf1; 我的问题就在这,我具体实现的时候,为什调用不了webform1 这个类呢?
WebForm1 wf1=new WebForm1();貌似应该这样写吧!