T
Todd A
If I use the following in my code behind page:
Public Class _Default
Inherits System.Web.UI.Page
The page will compile with no errors from the command line compiler
(vbc.exe)
But, If I insert my own base page to inherit from, say,
Public Class _Default
Inherits BaseWebPage
I am unable to get the code to compile, even if I compile BaseWebPage first
and make a reference to it.
Do I have to include the code for BaseWebPage with every page that wants to
inherit it?
I've tried a number of things here, but have been unsuccessful.
Thank you,
Todd
Public Class _Default
Inherits System.Web.UI.Page
The page will compile with no errors from the command line compiler
(vbc.exe)
But, If I insert my own base page to inherit from, say,
Public Class _Default
Inherits BaseWebPage
I am unable to get the code to compile, even if I compile BaseWebPage first
and make a reference to it.
Do I have to include the code for BaseWebPage with every page that wants to
inherit it?
I've tried a number of things here, but have been unsuccessful.
Thank you,
Todd