Deriving from C# ASPX Pages

  • Thread starter Thread starter Dmitri Shvetsov
  • Start date Start date
D

Dmitri Shvetsov

Hi,

Does anybody know how to create a root class with ASPX page to derive from
this class later? The idea was to create the "root" page with all
evaluations, restrictions, basic interface, etc., then derive a new class
from it.

Maybe URLs, documentation?

Dmitri.
 
ASP.NET v2.0 will contain a feature called master pages which provide
a template for other pages to use. Something else you may consider is
using a single page with common ui and functional components into
which you dynamically load user controls with custom content and
functionality.

Jay Nathan, MCP .NET
Senior Consultant
MARINER
 
Good article and that's pretty much what I've been doing... However, I'm
running into UI designer issues. When an ASPX page inherits from anything
other than System.Web.UI.Page the UI designer and the HTML intellisense
doesn't work in the HTML view. I see from the discussion about the article
that others have seen the same issue. Anyone know a way to fix this one?

Andrea
 
Back
Top