|
Difference between src and Code-Behind |
![]() |
Views: 3199
|
Thread Tools | Rate Thread |
#1
|
|||
|
|||
![]()
Difference between src and Code-Behind
With the ‘src’ attribute, the source code files are deployed and are compiled by the JIT as needed. Though the code is available to everyone with an access to the server (NOT anyone on the web), this method is preferred as it does away with the compilation of the DLLs. ‘CodeBehind’ attribute just has the VS.NET associate the code file with the aspx file. This is necessary since VS.NET automates the pre-compiling that is harder by hand. Due to this the ‘Src’ attribute is done away with having only a DLL to be deployed enhancing the protection level even though it can be decompiled. |