简体   繁体   中英

How to increase page performance in Asp.net c#

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.

You can refer the below MSDN link

MSDN

Also the below link

Performance tuning

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

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 .

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.

Performance tuning includes lot and more. Please refer to this

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM