For passing Values between ASP.NET Web Forms how to create the instance of Source.aspx page(Source WebForm) in Target.aspx(Target WebForm ) page
Destination Web Form(Target.aspx.cs)
Not-Working code is shown below:
private void Page_Load (object sender, System.EventArgs e)
{
//create instance of source web form
WebForm1 wf1;//Problem here
//get reference to current handler instance
wf1=(WebForm1)Context.Handler;
Label1.Text=wf1.Name;
Label2.Text=wf1.EMail;
}