views:

151

answers:

3

I have been publishing a web application project in debug mode. I know there are a lot of questions on here regarding this, but I think they more pertain to window apps, but I could be wrong. Basically, I was just curious on what the difference is and if it is a big difference in publishing an asp.net web application project built in debug mode as opposed to release mode?

+2  A: 

Beware of deploying debug code in prodcution

Debug and Release Builds in ASP.NET 2.0

Try Googling and you will get lot of links.

Shoban
+2  A: 

Google brings up all sorts of stuff. It's probably best to start there, this has been answered a thousand times.

blesh
+2  A: 

Having

<compilation debug="true">

Enabled in the web.config will a relatively large overhead, nevermind the security risks. Its always advised to disable this for production environments

Jammin