Dealing with larger traffic on ASP.net web site -


i have asp.net web site our company , handles 1000 - 2000 users every day. site have 4-5000 users every day. putting 2 servers , put them in hardware load balanced environment.

i wondering if there else should asp.net web site perspective handle larger users.

thanks.

some things i'd take consideration..

  • session state management - going out-of-process? if so, make sure being stored in session serializable.
  • do have large number (or any? may argue) update panels being used or many standard server-side postbacks? if so, try convert can simple ajax requests , marshal raw/json data , forth. minimize on number of full page life cycles , data traffic on server.
  • on front-end/ui side, try leverage css sprites, go server images once , never again.
  • for database connectivity, make sure leverage connection pooling.
  • you may want consider js , css minification.

additionally, these pages has tips:

http://msdn.microsoft.com/en-us/magazine/cc163854.aspx (a bit outdated, still relevant)

http://developer.yahoo.com/performance/rules.html


Comments

Popular posts from this blog

c# - SharpSVN - How to get the previous revision? -

c++ - Is it possible to compile a VST on linux? -

url - Querystring manipulation of email Address in PHP -