vote up 1 vote down star

In ASP.Net, if I set up a web application I can configure it to be in release mode but with a website I can only set the configuration to be in debug mode. Why is this?

flag

59% accept rate

4 Answers

vote up 2 vote down

A Web Site's debug/release is controlled by the Web.Config file:

<system.web>
  ...
  <compilation debug="true">
  ...
  </compilation>
</system.web>

Set debug="true" for debugging, set debug="false" for release.

link|flag
vote up 0 vote down

For websites one releases the source code to the site, there is no build to be done.

The code is built on site.

link|flag
vote up 0 vote down

Probably because a Web Application compiles the whole website into one DLL. To run and debug pages requires recompiling the entire application. Whereas a website project compiles dynamically at the page level.

link|flag
vote up 5 vote down

In web site projects each page is compiled dynamically upon first request. It will compile without debugging symbols unless you specify otherwise in the config file.

link|flag
"each page is compiled dynamically for each page." Do you mean each page is compiled per REQUEST? – Outlaw Programmer Feb 13 at 17:47
No, each deployment. – Joel Coehoorn Feb 13 at 17:48
Thanks Outlaw...fixed the grammar. – Peter J Feb 13 at 17:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.