简体   繁体   中英

Optimizing IIS 6.0 performance on Windows Server 2003 Operating System

. Hi, We have built an ASP.NET application (with C#.net language) and hosted on IIS 6.0 on Windows Server 2003 Operating System.

Now we need to optimize the IIS performance so that the pages get served fast.

Would you please let me know if you have any idea on this?

If would be great if you could provide the relevant doc or web reference (If needed).

Many Thanks, Regards, Venkat. .

its not really a question of tuning the iis, as much as your code.

iis

  • tune your caching and compression settings
  • only have one default document
  • don't use extensionless handlers

these settings are virtually pointless though if the code you have written is not optimized

asp.net

  • never run in debug mode
  • be carefull with exceptions since they are expensive
  • use page and usercontrol caching correctly
  • set caching, etag and expires headers correctly on your http-response
  • compress your javascript and stylesheets (there is different 3rd party components for this)
  • reduce the number of http requests
    • use sprites for small image icons etc.

links

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM