|
-
November 4th, 2009, 08:08 AM
#1
How to speed up page loading in ASP.Net 2.0
Is there any tips to speed up page loading time in Asp.Net 2.0 ?
-
November 4th, 2009, 02:17 PM
#2
Re: How to speed up page loading in ASP.Net 2.0
Well it is quite difficult to give a general solution. What is happening during the Page Load event of the Page that you are talking about? Ideally you should first identify bottlenecks and then start working on them one by one. That is how you can improve performance.
-
November 5th, 2009, 02:35 AM
#3
Re: How to speed up page loading in ASP.Net 2.0
Minimize database calls.
Speed up/optimize database queries.
Minimize/remove viewstate
Minimize redundant functionality
Cache images/results
Minimize requests/responses
Make effective JavaScript and CSS.
Make effective HTML
Use AJAX
Use compression in the web server
Group up the graphics into one image and using positioning instead of supplying many small graphic pieces.
Basically - the normal things
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|