Performance

  • Thread starter Thread starter simon
  • Start date Start date
S

simon

I have asp.net 1.0 application. It runs on powerfull server but it's still
very slow.
It uses also sql server in background.
I would like to set computer and windows 2003 server that my application has
all resources and is high priority aplication.

Any idea? What setting can speed up my application.

Thank you,
Simon
 
simon said:
I have asp.net 1.0 application. It runs on powerfull server but it's still
very slow.
It uses also sql server in background.
I would like to set computer and windows 2003 server that my application has
all resources and is high priority aplication.

Any idea? What setting can speed up my application.

Thank you,
Simon

I think the first question is: *why* and *where* is my application slow?

SqlServer itself is quite fast, but your queries might be (too?)
complicated.
How long does your code take to process the data?
Is the html too complicated for IE (try the speed in FireFox)?

When you know where the slowdown occurs, you can dig deeper to find out
why it happens. Maybe you can optimize your application.
 
hi,

thank you for your answer.
Lets say, that my aplication is optimized and SQL queries are also
optimized.

Now I would like to set the windows and system, to perform my aplication
with highest priority and best performance.
I know, that it's possible and that it can bring a huge improvment.

I just don't know how to do that. Any idea?

regards,
Simon
 
for fields or elements that get refilled everytime a postback occurs, you can
set the viewstate to false. That'll do much. But know what you are doing!
 
Have you tried going into processes in Task Manager, right clicking on the
aspnet_wp.exe process and setting the priority to the highest? I've never
tried it, so don't know if it works.
 
Back
Top