ASP.NET Web Deployment Tip
When your ASP.net App has been deployed make sure you turn off debugging.
Flip the bit from:
<compilation debug="true">
to:
<compilation debug="false">
A little speed and performance enhancement.
Enjoy!
When your ASP.net App has been deployed make sure you turn off debugging.
Flip the bit from:
<compilation debug="true">
to:
<compilation debug="false">
A little speed and performance enhancement.
Enjoy!