G
Guest
Hello,
My doubt is arround webforms and its load programatically. I have a class
derived from System.Web.UI.Page (clsWebForm), with their own properties and
methods. Inside another webform I instanciate clsWebForm, filling their
properties, but how can I load the webform inside the web explorer?
public class clsWebForm : System.Web.UI.Page
{
....
}
In another page:
private void cmdOk_Click(object sender, System.EventArgs e)
{
clsWebForm clsFrm = new clsWebFormt();
// here I want to load the new web form bu I do not
how!!!!
}
Thanks!
My doubt is arround webforms and its load programatically. I have a class
derived from System.Web.UI.Page (clsWebForm), with their own properties and
methods. Inside another webform I instanciate clsWebForm, filling their
properties, but how can I load the webform inside the web explorer?
public class clsWebForm : System.Web.UI.Page
{
....
}
In another page:
private void cmdOk_Click(object sender, System.EventArgs e)
{
clsWebForm clsFrm = new clsWebFormt();
// here I want to load the new web form bu I do not
how!!!!
}
Thanks!