inheritance in whidbey

  • Thread starter Thread starter Mark
  • Start date Start date
M

Mark

In version 1.1, I've got numerous code behinds that inherit from a class
we've developed that inherits from the the Page class.

How will this work in Whidbey? With partial classes used for code behinds,
where/how can I modify the class that a code behind inherits from? In the
express web version, I don't even see the line of code where the code
behind inherits from the Page class??

Thanks in advance.

Mark
 
Mark,

Check this out
http://dotnetjunkies.com/WebLog/sahilmalik/archive/2004/09/06/24554.aspx

In essence, that might not be the route you want to take anymore - even
though it's possible to do that, but it's a little awkward. You might want
to think more in terms of master pages, rather than inheritance. (Not sure
what the benefit of that might be .. but wuteverrr!!!).

Reminds me of a joke - How many microsoft engineers does it take to plug in
a light bulb? Answer - Zero, it takes one microsoft analyst to say darkness
is the standard.

Even in windows forms usercontrols, we got this partial class crap now. Who
the f*** came up with this.

- Sahil Malik
You can reach me thru my blog http://www.dotnetjunkies.com/weblog/sahilmalik
 
Back
Top