Quote:
Originally posted by gerbick
aspx files compile the code each and every time you use it... unless you are passing along variables that are non-hashed or non-paramaterized. and that's just unsafe.
you will see that .NET will force a compile, with a new GUID for each usage of ASP.NET pages.
thus... slow. it will only keep in memory that for each stateful operation or session. not for individual or unique sessions.
It only compiles the page if its the first time its been accessed or its been changed - technically it doesnt recompile the "page" it recompiles the code-behind