vote up 0 vote down star

I want to implement Generics in my Page Class like :

Public Class MyClass(Of TheClass)
Inherits System.Web.UI.Page

But for this to work, I need to be able to instantiate the Class (with the correct Generic Class Type) and load the page, instead of a regular Response.Redirect. Is there a way to do this ?

flag
I don't understand what role Response.Redirect has in instantiating a class or loading a page. Can you expound more on what you are trying to do? – Jon Limjap Sep 22 '08 at 3:09
Response.Redirect is one of the ways to load a Page. But I want to load my Page when its Class exhibits a Generic Behavior, like the eg. I submitted. – Mac Sep 22 '08 at 3:14
Can you give a more concrete example? What would you expect TheClass to be, and where would you expect it to come from? – gregmac Sep 22 '08 at 3:32

3 Answers

vote up 1 vote down

I'm not sure to fully understand what you want to do. If you want something like a generic Page, you can use a generic BasePage and put your generic methods into that BasePage:

Partial Public Class MyPage
    Inherits MyGenericBasePage(Of MyType)

End Class

Public Class MyGenericBasePage(Of T As New)
    Inherits System.Web.UI.Page

    Public Function MyGenericMethod() As T
        Return New T()
    End Function

End Class

Public Class MyType

End Class
link|flag
vote up 0 vote down

I'm no ASP.NET guru, but I don't see how. How do you intend on using the class?

link|flag
vote up 0 vote down

The answer that says to derive a type from the generic type is a good one. However, if your solution involves grabbing a page based upon a type determined at runtime then you should be able to handle the PreRequestHandlerExecute event on the current HttpApplication.

This event is called just before a Request is forwarded to a Handler, so I believe you can inject your page into the HttpContext.Current.Handler property. Then you can create the page however you wish.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.