Reputation: 524
I want to keep a track which pages are mostly accessed and heavy traffic. And page can be accessible to more user at any instant of time. As number of users increased then login page is not loading and site goes very slow..
I want to know or save page loading time/Network Bandwidth. How it will possible?
Solutions and tricks tips are welcome.
Upvotes: 4
Views: 4297
Reputation: 1
You could use web method in the .cs file of your page and call this method via ajax. By doing that, your page will not post back, thus enhance performance. See more information here.
Upvotes: 0
Reputation: 7525
Performance is a very major factor for any application and for achieving this you have to go through on various parts of the web programming like: well designed data architecture, using Cache, Background Processing, using stored procedure and many more.
Please visit this link which help you to do the same: 10 Tips for Writing High-Performance Web Applications Improving ASP.NET Performance
Upvotes: 2
Reputation: 31239
If you want to find bottlenecks on the page and see what is taking the longest. You can use Dottrace that is a nice add-on for visual studio. You can profile different stages on the page.
Upvotes: 0