G
Guest
In VB.NET 2003 I was doing the following(in codebehind) and it worked great.
In 2005 "WebMain" in no where in scope. How do I make "WebMain" visible to
all Code-Behind classes? Note: these classes are codebehinds of web pages.
Here's the weird part, I had it work once , then it never worked again.
Public Class WebMain
Inherits System.Web.UI.Page
Protected Utilitiess As New Utilities
End Class
Public Class Foo
Inherits WebMain
End Class
In 2005 "WebMain" in no where in scope. How do I make "WebMain" visible to
all Code-Behind classes? Note: these classes are codebehinds of web pages.
Here's the weird part, I had it work once , then it never worked again.
Public Class WebMain
Inherits System.Web.UI.Page
Protected Utilitiess As New Utilities
End Class
Public Class Foo
Inherits WebMain
End Class