Basic question

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.
 
C

Curt_C [MVP]

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.
 

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

Top