CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Sep 2006
    Posts
    96

    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. #2
    Join Date
    Jun 2004
    Location
    Kashmir, India
    Posts
    6,808

    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.

  3. #3
    Join Date
    Feb 2005
    Location
    Denmark
    Posts
    742

    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
  •  





Click Here to Expand Forum to Full Width

Featured