C
Craig Street
Hi
How do i create a base page in ASP.NET 2.0? I don't want to use master pages
as I don't need any visual inheritance.
You could do this simply in ASP.NET 1.1 by creating a base page that
inherted form System.Web.UI.Page and the ensuring that all of your pages
inherited from your own base pages.
With the advent of partial classes this seems somewhat more difficult.
I've got the following code
How do i create a base page in ASP.NET 2.0? I don't want to use master pages
as I don't need any visual inheritance.
You could do this simply in ASP.NET 1.1 by creating a base page that
inherted form System.Web.UI.Page and the ensuring that all of your pages
inherited from your own base pages.
With the advent of partial classes this seems somewhat more difficult.
I've got the following code