
- Forum
- Programming Talk
- ASP
- Reason for Reduced Performance
Reason for Reduced Performance
This is a discussion on Reason for Reduced Performance within the ASP forums, part of the Programming Talk category; I have set <compilation debug="True"/> in my ASP.NET application. My Site is drastically slow down. I want to know is ...
-
Reason for Reduced Performance
I have set
<compilation debug="True"/>
in my ASP.NET application. My Site is drastically slow down. I want to know is it because of setting <compilation debug="True"/>. If so what is the reason for this?
-
Yes it is because of setting <compilation debug="True"/>. You have to make the setting as <compilation debug="FALSE"/>. Because when the option is set as true you would have unnecessary debug going on at the back which would reduce the performance of application for sure. So use it only when you need to debug actually and surely this mode will not be needed for your final implementation at the user level.
-
01-08-2011, 05:19 AM #3
- Join Date
- Jan 2011
- Answers
- 1
Thanks for sharing. It's greatYes it is because of setting <compilation debug="True"/>. You have to make the setting as <compilation debug="FALSE"/>. Because when the option is set as true you would have unnecessary debug going on at the back which would reduce the performance of application for sure. So use it only when you need to debug actually and surely this mode will not be needed for your final implementation at the user level.
-
Sponsored Ads

Reply With Quote






