You're correct that code behind has never been required, but it is difficult
to do the single file method in VS.NET.
I believe you're wrong about inheritance not being needed in ASP.NET classes
anymore. Underneath it all, your page is still inheriting from the Page
class.
--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net
"Matt Berther" <> wrote in message
news:...
> 1. Code behind has never been required.
> 2. Inheritance is not used for ASP.NET classes anymore, rather partial
> classes, which introduces the idea of a code-beside model.
>
> --
> Matt Berther
> http://www.mattberther.com
>
>
> Steve C. Orr [MVP, MCSD] wrote:
>
> > Code behind is no longer required; VS2005 has good support for using a
> > single file for your HTML source and server code.
> > Inheritance is still used in VS2005, although much of the boilerplate
code
> > is now hidden behind the scenes.
> >