Basic question

  • Thread starter Thread starter Alex Agranov
  • Start date Start date
A

Alex Agranov

When the book talks about how ASP.NET allows you seperate content(ASPX) and
program-logic(code-behind), isn't this really just a syntactical conceit?
After all, the ASPX file is parsed with the code-behind to generate a new
derived class that will be the actual one instantiated by the HTTP Handler
and rendered.
 
not really. much of it is compiled into a DLL that holds the serverside
functionality from the CS file. Only pointers and such are maintained by the
rendered html.
 
Back
Top