Regarding Deployment of application in Asp.net 2.0
-
Hi all, Please Clear my Doubt abut this.... i want to know in asp.net2.0 we dont have any dll. when we deploy any application on server we just copy the aspx pages and rest of the folders including bin folder but in that bin folder we didn't find any dll of the project..and we know that for running a particular project we require dll then how the project run succesfully on server without dll... can anyone tell me i have done so much googling but didn't find the ans. Thanks in advance Thanks and Regards Aavesh Agarwal :rose:
-
Hi all, Please Clear my Doubt abut this.... i want to know in asp.net2.0 we dont have any dll. when we deploy any application on server we just copy the aspx pages and rest of the folders including bin folder but in that bin folder we didn't find any dll of the project..and we know that for running a particular project we require dll then how the project run succesfully on server without dll... can anyone tell me i have done so much googling but didn't find the ans. Thanks in advance Thanks and Regards Aavesh Agarwal :rose:
It is very odd that you don't have any dlls in the bin directory. Did you build the asp.net site? The only time I can think of when you don't have dll is when you put all the code behind code in the aspx directly in script tags. This can cause performance issues. Ben
-
Hi all, Please Clear my Doubt abut this.... i want to know in asp.net2.0 we dont have any dll. when we deploy any application on server we just copy the aspx pages and rest of the folders including bin folder but in that bin folder we didn't find any dll of the project..and we know that for running a particular project we require dll then how the project run succesfully on server without dll... can anyone tell me i have done so much googling but didn't find the ans. Thanks in advance Thanks and Regards Aavesh Agarwal :rose:
Hi...
Aavesh Agarwal wrote:
we didn't find any dll of the project..
yes you will not see any dlls in bin folder because in 2.0 they came uo with a new compilation i.e., precompilation so with that the dlls will be placed in the following path C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files so if you want to deploy the code you copy all the dlls from this folder in to your bin folder and then deploy the application..... and one more new concept in 2.0 is "Publish Web site".
Regards, Sandeep Kumar.V
-
Hi all, Please Clear my Doubt abut this.... i want to know in asp.net2.0 we dont have any dll. when we deploy any application on server we just copy the aspx pages and rest of the folders including bin folder but in that bin folder we didn't find any dll of the project..and we know that for running a particular project we require dll then how the project run succesfully on server without dll... can anyone tell me i have done so much googling but didn't find the ans. Thanks in advance Thanks and Regards Aavesh Agarwal :rose:
ASP.NET compiles the .aspx files on-the-fly, when they're needed, not before hand. SO, you don't have any .DLL files to deploy. This is a huge change from the ASP.NET 1.1 model where you had to deploy the compiled .DLL files.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007