1

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.

3
  • Are you talking about a "Web site" project or a "Web application" project? Commented Jul 20, 2009 at 1:28
  • how do i know which one i am working with? Commented Jul 20, 2009 at 1:29
  • If it is a web site then the project will look like a file path in the solution explorer. If it is a web appliation, it will be the project name. Commented Jul 20, 2009 at 1:30

2 Answers 2

1

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.

Sign up to request clarification or add additional context in comments.

Comments

0

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

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.