Release Mode

  • Thread starter Thread starter Jack Johnston
  • Start date Start date
J

Jack Johnston

My ASP.NET is running slowly so I build it in release mode to check
real performance. However when I run my app throught IE there seems to
no difference in performance. Do I need to copy files somewhere or do
something else?
 
How are you measuring the difference in performance? How much difference did
you expect in compiling it to release? You shouldn't expect a lot, certainly
none that you could see with the naked eye.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
http://www.takempis.com
Complex things are made up of
lots of simple things.
 
Jack,

This won't improve performance an awful lot either, but make sure your
web.config file has its debug line set to false:

<compilation defaultLanguage="vb" debug="false" />

Sincerely,


--
S. Justin Gengo, MCP
Web Developer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
 
Back
Top