Re: Retrieving derived class name inside base class
- From: stcheng@xxxxxxxxxxxxxxxxxxxx (Steven Cheng[MSFT])
- Date: Wed, 12 Sep 2007 03:14:48 GMT
Thanks for your reply Goran,
Yes, my code example only return the page's title, however, it acually
demonstrate that you can get the underlying running page's class through
this.Page.GetType()
You can print out this value. This class should be a dynamic generated
type(by ASP.NET runtime). You can use its "BaseType" to get the further
parent type. Thus, you can get all the classes in the page's inheritance
chain. How do you think?
Sincerely,
Steven Cheng
Microsoft MSDN Online Support Lead
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
Subject: Re: Retrieving derived class name inside base class
Date: Tue, 11 Sep 2007 09:58:14 -0400
Hi Steven,this
Your code returns the name of the .aspx page which is OK, but I need the
name of the .vb class behind it. So, for example, the ASPX page name in
case is "Login.aspx" and the code-behind class name is "Login". What Ineed
returned is "Login", and not "Login.aspx".inheritance
Also, "Login" class inherits from the base class.
Thanks for your help guys.
Goran
"Steven Cheng[MSFT]" <stcheng@xxxxxxxxxxxxxxxxxxxx> wrote in message
news:E34oYdC9HHA.5204@xxxxxxxxxxxxxxxxxxxxxxxxx
Thanks for Eliyahu's input.
Hi Goran,
As Eliyahu has suggested, to getting the base type from OO and
pageperspective is not quite realistic and recommended. However, based on my
understanding on your scenario, what you want to do is actually get some
information in the base class so as to determine which concrete child
andis the current running one, correct?
I've performed some research and the following ways should be some
possible
means:
** Since the base class is Page(which also derived from Control class),
you
can use the "this.Page" property to get the current running page class
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notifreflect its type.
** Or I think it is better to use some control or markup on the page to
detect the current page since you can use "this.Page.Controls" to get the
running page's Control collection. For example, this.Page.Title can give
you the page title.
Here is a test base page class I used for test and it works well:
public class BasePageClass : Pagesample base page >>>>>>
{
public string PageTypeName
{
get
{
return this.Page.GetType().FullName;
}
}
public string PageTitle
{
get
{
return this.Page.Title;
}
}
}
<<<<<<<<<<<<<<<<<<<<<<
Hope this helps.
Sincerely,
Steven Cheng
Microsoft MSDN Online Support Lead
==================================================
Get notification to my posts through email? Please refer to
issuesications.
Note: The MSDN Managed Newsgroup support offering is for non-urgent
followwhere an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each
youup response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================
This posting is provided "AS IS" with no warranties, and confers no
rights.
--------------------
From: "Eliyahu Goldin" <REMOVEALLCAPITALSeEgGoldDinN@xxxxxxxxxxxx><eCtB4788HHA.748@xxxxxxxxxxxxxxxxxxxx>
References: <#n2Aib88HHA.5160@xxxxxxxxxxxxxxxxxxxx>
<ejI$6o98HHA.3940@xxxxxxxxxxxxxxxxxxxx>
Subject: Re: Retrieving derived class name inside base class
Date: Tue, 11 Sep 2007 00:36:35 +0200
less
You can always call GetType() method, can't you?
--
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
"Goran Djuranovic" <goran.djuranovic@xxxxxxxxxxxxxxxxx> wrote in message
news:ejI$6o98HHA.3940@xxxxxxxxxxxxxxxxxxxxxxx
Eliyahu, thanks, but I would not like to have to type anything on the
derived classes (not even override methods), if possible.
Maybe I should explain the problem in detail. What I am trying to do is
re-use a menu control and its methods on 10 different web pages with as
coding as possible. So, here is how I planned to do it:cannot
- have every .aspx page contain a menu control (nothing declared in the
code-behind, because it would conflict with the base class)
- have a base class contain all the methods for menu control (plus base
class inherits from System.Web.UI.Page)
- have every page inherit from a base class
- every page has a subset of menu items, which is filterred based on what
the page (class name) is, and this is where the problem is, because I
retrieve the name of the derived class from within the base class.
Wish I could use multiple inheritance (without having to use the
interfaces).
Thanks
Goran
"Eliyahu Goldin" <REMOVEALLCAPITALSeEgGoldDinN@xxxxxxxxxxxx> wrote in
message news:eCtB4788HHA.748@xxxxxxxxxxxxxxxxxxxxxxx
It would be very much against the whole idea of inheritance. Instead
messageshould make a virtual GetData method in the base class and override it
in
the derived classes.
--
Eliyahu Goldin,
Software Developer
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
http://usableasp.net
"Goran Djuranovic" <goran.djuranovic@xxxxxxxxxxxxxxxxx> wrote in
ornews:%23n2Aib88HHA.5160@xxxxxxxxxxxxxxxxxxxxxxx
Hi all,
Is there a way to retrieve a derived class name inside a subroutine
a
function of the base class? I am trying to get some data from the
database, based on which derived class is calling the subroutine. I
know
the base class name can be retrieved by using reflection namespace:
System.Reflection.MethodBase.GetCurrentMethod.DeclaringType.Name.
Thanks
Goran
.
- Follow-Ups:
- Re: Retrieving derived class name inside base class
- From: Goran Djuranovic
- Re: Retrieving derived class name inside base class
- From: Steven Cheng[MSFT]
- Re: Retrieving derived class name inside base class
- References:
- Retrieving derived class name inside base class
- From: Goran Djuranovic
- Re: Retrieving derived class name inside base class
- From: Eliyahu Goldin
- Re: Retrieving derived class name inside base class
- From: Eliyahu Goldin
- Re: Retrieving derived class name inside base class
- From: Steven Cheng[MSFT]
- Re: Retrieving derived class name inside base class
- From: Goran Djuranovic
- Retrieving derived class name inside base class
- Prev by Date: RE: IIS7 on Vista and SQLExpress problem
- Next by Date: Re: ASP.NET application hits 2GB virtual bytes
- Previous by thread: Re: Retrieving derived class name inside base class
- Next by thread: Re: Retrieving derived class name inside base class
- Index(es):
Relevant Pages
|