Inheriting System.Web.UI.Page
All:
I’m new at C#, lifelong VB coder. I’m trying to do something in ASP.NET that I commonly do: Inherit System.Web.UI.Page.
I’ve created the class for the ‘InheritedPage’, and now I’m pointing my web page to it like this. In VB, the ‘load’ code in the inherited page runs automatically (before the web page ‘load’)
In C#, it appears that I have to actually call the ‘load’. Can you confirm that I’m doing this correctly?