Radhi
Radhi

Reputation: 6339

ASP.Net webapplication, keep in mind things for performance ,scalability

what are the things a developer should keep in mind or should take care when depeloping a web application.

web application e.g. social networking web app.

which are the things which must be implemented to get good performance and scalability.

please provide any article or blogs or suggestions for this kind of question if you have

-thanks in advance

Upvotes: 0

Views: 181

Answers (2)

Steav
Steav

Reputation: 1486

Deactivate Viewstate where you don't need it.

Most important: Make sure to hold the amount of roundtrips as small as possible. Understanding the Life-Cyclus of an asp.net website is most important for that matter.

http://www.startvbdotnet.com/aspsite/forms/formlifecycle.aspx

Upvotes: 1

Ivo
Ivo

Reputation: 3436

Some things that popped up in my mind

  • build in caching
  • keep code clean and (unit) testable
  • messure code coverage
  • optimize database with indexs and check execution plans
  • refactor every thing you build
  • optimize front end loading time (minification, gzip, compressing)
  • use source control

Upvotes: 1

Related Questions