tags:

views:

62

answers:

2

i am just trying to understand the deployment build model with asp.net

i write code locally on my machine in visual studio and when i hit f5, it starts up a local webserver for all my testing.

then, i FTP all of my source code to my webserver and then hit the real URL.

my question is when does this get compiled on the webserver. is it looking at the bin/ directory of my local file that i just copied over or is it recompiling the solution and projects on the web server.

+1  A: 

If you just drop source files (.aspx, .asmx, etc.) in the web site's directory and site is set to allow dynamic updating then each page will get compiled the first time it is accessed.

Jeff Leonard
A: 

Every time you update it, it gets recompiled. In your bin folder, all you have is classes with code.

Cyril Gupta