Debug vs Release Mode in ASP.net

Hello Guys, Welcome to my blog again. I just want you to share a simple thing while developing and deploying (publishing) your application or website in debug or release environment. Here are the code in web.config, why we should not use debug=true in deployment environment. Set compilation debug="true" to insert debugging symbols into the compiled page. Because this affects performance, set this value to true only during development. Here set compilation debug=true while in developement

Comments