| CodeGuru Home | VC++ / MFC / C++ | .NET / C# | Visual Basic | Newsletters | VB Forums | Developer.com |
|
|||||||
| ASP.NET Post questions and get answers on ASP.NET. Obviously there will be some overlap between this board and the C# and Visual Basic .NET boards so please try and only post ASP.NET specific questions here. |
![]() |
|
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#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 ?
|
|
#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.
__________________
Use [code]your code here[/code] tags when you post source code Search here before you post your question, someone might have already asked it before. My Articles |
|
#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 |
![]() |
| Bookmarks |
|
||||||
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|