Tips: What you need do before deploying your web applications

Tips: What you need do before deploying your web applications

Posted by: Rickie  http://rickie.cnblogs.com
Before deploying your ASP.NET web applications, you should take the following steps to make sure that your application is ready to move into production.

1. Turn off debugging in the web.config file.
.......
<compilation debug="false" />
.......
Because the debug symboles in the compiled ASP.NET pages degrade the performance of your web applications.

2. Build your application again in Release mode.
Just change configuration from Debug to Release mode, then rebuild it.

posted @ 2006-03-24 17:56  Rickie  阅读(462)  评论(0编辑  收藏  举报