J
Jimmy
I have C# code as follows.
//create instance of source web form
WebForm1 wf1;
//get reference to current handler instance
wf1=(WebForm1)Context.Handler;
Label1.Text=wf1.Name;
Label2.Text=wf1.EMail;
What is the equivavlent code in VB.Net ?
I am writing application in ASP.Net.
Thanks,
Jimmy
//create instance of source web form
WebForm1 wf1;
//get reference to current handler instance
wf1=(WebForm1)Context.Handler;
Label1.Text=wf1.Name;
Label2.Text=wf1.EMail;
What is the equivavlent code in VB.Net ?
I am writing application in ASP.Net.
Thanks,
Jimmy