Reputation: 6339
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
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
Reputation: 3436
Some things that popped up in my mind
Upvotes: 1