60 Performance and Optimization Tips for your Website - Don’t use ASP...
(Page 8 of 12 )
32. Don’t use ASP commenting: which is compiled each time the page is loaded. Instead, use HTML commenting or no commenting at all.
33. Don’t leave empty Session_OnStart or Session_OnEnd methods. If Sessions are not used in your application, remove these two methods since they will be compiled and executed even when empty.
ASP.NET
34. ASP.NET Cache API. If you are not using the Cache API, stop your coding and read the help on this subject and implement it as soon as possible.
35. Reduce multiple database resultsets. Each database query with returned results is a round trip to the database server, adding to the overall response time.
Next: Use paged data... >>
More Web Development Articles
More By Jase Dow