-3

I developed my website using ASP.Net MVC, While using Google Page Speed Insight, it shows following page load time speed issue.

How to speed up the page load time?

Google Page Speed Insight

tereško
  • 58,060
  • 25
  • 98
  • 150
  • Are you using IIS to host website? Are you using Entity Framework to connect into database. How about Javascripts, do you have lots of Javascript libraries which are defined in head section of html page? – Panu Oksala Nov 03 '18 at 07:21
  • i am not using entity framework. i have maintained bundle for javascript and css. and in the head section only two javascripts are binding using bundle.config – Mukesh Rajpoot Nov 03 '18 at 08:24

1 Answers1

1

Hello please use some functionality in coding side

  1. Application Caching(where it required basic tutorial)
  2. Optimize Your Images(use thumbnails if possible)
  3. please add Bundling (Bundle/Minify JavaScript/CSS)
  4. Use AJAX When You Can
  5. For IIS settings please go through this link discussion
  6. Load CSS first and JS in last
  7. please CDN for external JS
  8. If Using entity framework then use async call and improve performance of sql query
Community
  • 1
  • 1
Rajdip Khavad
  • 257
  • 1
  • 3
  • 9