Hi,
I have a class which generate a dynamic page.
Panel myPanel = new Panel();
TextBox myTextBox = new TextBox();
myPanel.Controls.Add(myTextBox);
Page thePage = new Page();
thePage.Form.Controls.Add(myPanel);
return thePage;
my class basically do this. I call my class and I get thePage object from code-behind. Now, How can I render this page object and show it to user like a .aspx file?
Thank you.