Ask a Question related to ASP.NET General, Design and Development.
-
Tom J. #1
Page Base Classes
..NET seems to support inheritance of the Page class, but it doesn't seem to
render the information from the base class properly, at least not by
default.
If I create a base class, say, PageBase that derives from the 'normal' Page
class - then derive a new page type, say LoginPage, that derives from
PageBase I would have expected the controls, background, etc. that I placed
on the PageBase class level to appear in the LoginPage page - but they
don't.
Can anyone tell me what is going on here? ...Is there an easy work-around
(available now), or should I abandon the idea of a visual inheritance in the
current version of .NET?
Thanks!
Tom J. Guest
-
Desperate: share base classes/methods across control assemblies?
Please. I really really need help here deciding what to do. I've been spending a lot of time lately building (hopefully) useful server... -
Adding a Dynamic User Control from the Base Page Class (and retaining it on Postback?)
Hi There! As the subject says, I need to add a user control dynamically (using LoadControl function) to the derieved page from the base Page... -
Abstract Base Page / UserControl
Our current solution has a number of ASP.NET pages with very similar functionality. We would like to move the common functions into a base class... -
Base of Numbers
Hello Folks! I just wanted to know if there's any way except "printf" to print out (or convert to string) a number using a different base than... -
Designer refuses to load webform when some of base classes was changed
We have some base classes library which includes also base web form class. In every new project we adding one web form class which inherits from our... -
Marina #2
Re: Page Base Classes
The visual components can't be inherited. The code can.
The .aspx itself, technically inherits from the class defined in the .vb
file. You will notice, that private variables in your .vb file will not be
accessible in server side scripts in the .aspx. But the protected ones will
be - because protected variables can be inherited.
"Tom J." <etjorg@hotmail.com> wrote in message
news:%23PDIGuXRDHA.1072@TK2MSFTNGP10.phx.gbl...to> .NET seems to support inheritance of the Page class, but it doesn't seemPage> render the information from the base class properly, at least not by
> default.
>
> If I create a base class, say, PageBase that derives from the 'normal'placed> class - then derive a new page type, say LoginPage, that derives from
> PageBase I would have expected the controls, background, etc. that Ithe> on the PageBase class level to appear in the LoginPage page - but they
> don't.
>
> Can anyone tell me what is going on here? ...Is there an easy work-around
> (available now), or should I abandon the idea of a visual inheritance in> current version of .NET?
>
> Thanks!
>
>
Marina Guest
-
George Ter-Saakov #3
Re: Page Base Classes
How do you think it's going to look like.
When page renders it self it renders evrything from <HTML> to </HTML>
So do you want to see 2 <HTML> tags in your output?
I do not think so.
George.
"Tom J." <etjorg@hotmail.com> wrote in message
news:%23PDIGuXRDHA.1072@TK2MSFTNGP10.phx.gbl...to> .NET seems to support inheritance of the Page class, but it doesn't seemPage> render the information from the base class properly, at least not by
> default.
>
> If I create a base class, say, PageBase that derives from the 'normal'placed> class - then derive a new page type, say LoginPage, that derives from
> PageBase I would have expected the controls, background, etc. that Ithe> on the PageBase class level to appear in the LoginPage page - but they
> don't.
>
> Can anyone tell me what is going on here? ...Is there an easy work-around
> (available now), or should I abandon the idea of a visual inheritance in> current version of .NET?
>
> Thanks!
>
>
George Ter-Saakov Guest



Reply With Quote

