I have a C# class which extended the System.Web.UI.Page class (myWebPage.cs) and i also has a VB webform which inherits from myWebPage instead of the System.Web.UI.Page, I run the project which is OK, all function work find, but when I check back to the page
Designer, I'm no longer can access the Designer. After I replace the myWebPage back to System.Web.UI.Page than I can access to the Designer again. Is any thing that i missed at my extend class?? Thx :)
The designer is trying to instantiate your myWebPage base class to read all the properties using reflection. It is an annoying problem. Do you have any properties in your base class that are doing things only valid during runtime?
jswc
Member
5 Points
1 Post
extend of the System.Web.UI.Page
Aug 02, 2003 04:17 AM|LINK
grennis
Member
80 Points
16 Posts
Re: extend of the System.Web.UI.Page
Aug 02, 2003 05:08 AM|LINK