problem with inheriring a page
-
Hi, i have a page by name public class webform1: System.Web.UI.Page (webform) which is basically a page which dynamically generates controls .The users have to inherit the page if they want the same format of the default page (controls) so what i did in webform 2 was public class webform2 : webform1 in the webform1 i have declared the place holder pl1 where i have all the controls pushed in .On running webform2 i dont see the controls present in webform1.(webform1 is running fine with cntls being displayed) pls help me out
-
Hi, i have a page by name public class webform1: System.Web.UI.Page (webform) which is basically a page which dynamically generates controls .The users have to inherit the page if they want the same format of the default page (controls) so what i did in webform 2 was public class webform2 : webform1 in the webform1 i have declared the place holder pl1 where i have all the controls pushed in .On running webform2 i dont see the controls present in webform1.(webform1 is running fine with cntls being displayed) pls help me out
-
Hi, i have a page by name public class webform1: System.Web.UI.Page (webform) which is basically a page which dynamically generates controls .The users have to inherit the page if they want the same format of the default page (controls) so what i did in webform 2 was public class webform2 : webform1 in the webform1 i have declared the place holder pl1 where i have all the controls pushed in .On running webform2 i dont see the controls present in webform1.(webform1 is running fine with cntls being displayed) pls help me out
-
You are inheriting the class, but not the contents of the .aspx file. --- b { font-weight: normal; }
-
Hi, Since the placeholder is declared in the code behind then why is it not displaying. Is there a way out to inherit the controls(in .net 1.0) from one page to another so that we can use it as a master page as in .net 2.0.