when we compiling the asp.net project....

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hi guys,

when we compiling the asp.net project, all codebehind pages gives you one
dll. suppose if i write the code in .aspx forms itself then is it create a
dll ?

if i write the code in aspx files then wht is going on when running the
project?
 
The ASP.NET runtime generates parses the ASPX and code-gens .cs or .vb
files. These files get compiled into an assembly (.dll) in a temp
directory.
 
Back
Top