J
Jon Maz
Hi All,
I've just noticed that there seem to be two ways of setting up a global.asax
file.
At http://www.csharphelp.com/archives/archive206.html the global.asax
example has Application_Start etc within <script runat="server"> ...
</script> tags, whereas VS.Net creates a global.asax.cs file that is
presumably pre-compiled like a .aspx.cs file.
Am I correct in assuming that global.asax works just like a .aspx, ie there
is a Code Behind model and an Inline model, and the programmer has an open
choice between the two, depending on a trade-off between speed (compiled
Code Behind) versus the maintainability of not having to recompile after
changes (Inline)?
And presumably, as with inline .aspx pages, does an inline global.asax get
compiled when the first page of the application is hit?
TIA,
JON
I've just noticed that there seem to be two ways of setting up a global.asax
file.
At http://www.csharphelp.com/archives/archive206.html the global.asax
example has Application_Start etc within <script runat="server"> ...
</script> tags, whereas VS.Net creates a global.asax.cs file that is
presumably pre-compiled like a .aspx.cs file.
Am I correct in assuming that global.asax works just like a .aspx, ie there
is a Code Behind model and an Inline model, and the programmer has an open
choice between the two, depending on a trade-off between speed (compiled
Code Behind) versus the maintainability of not having to recompile after
changes (Inline)?
And presumably, as with inline .aspx pages, does an inline global.asax get
compiled when the first page of the application is hit?
TIA,
JON