Webform creation at runtime
I am tryin to build a windows utility in c#(ASP.NET) which will generate web pages by takin in input from user as to how many forms he want and what attributes he wants on those forms
i tried this
Webform1 w=new Webform1();
Response.Redirec("w.aspx");
but this intantiating doesnt work. How do i create a webform and redirect onto it at runtime?
|