Are aspx pages compiled?

  • Thread starter Thread starter Terry Jolly
  • Start date Start date
T

Terry Jolly

Are aspx pages compiled or interpative (like asp) or some of combination of
the two?

Thanks In Advance
 
They are compiled when they are first requested and the runtime does things
with them for you, serving the results of a page request from the compiled
dll's.
 
They are compiled when they are first requested and the runtime does things
with them for you, serving the results of a page request from the compiled
dll's.

Not entirely accurate. The actual ASPX page itself is not compiled, but
the code behind (and any embedded code in the ASPX page) are.
 
Yes, to MSIL which is not native machinelanguage (and decompileable).
Just to make it more clear..
 

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