web form inheritance visual studio 2005

  • Thread starter Thread starter Billy Cormic
  • Start date Start date
B

Billy Cormic

Hello,
Does anyone know if we will be able to inherit web controls from
web forms in Visual Studio 2005. This has been a source of constant
frustration for me with the other versions. For example, will I be
able to put buttons on a web form named webform1 and be able to show
those buttons on a new web form named webform2 simply by inheriting
webform1 on webform2?

Thanks,
Billy
 
Not with inheritance as in using the Inherits keyword in VB.NET. As
Curt pointed out, there are other new solutions.
 
Curt_C said:
With master pages definitely.

Will those be a feature of VS 2005 or will this be included in the
framework somehow (page becomes a list of subclasses or something like
that)?
 
It will a feature of the runtime (which knows how to blend a master
page and a content page together), and the framework (which will
provide programattic access to the master page). The IDE is smart
enough to help out during design time too.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top