Sunil Chavan
Sunil Chavan

Reputation: 524

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.

Upvotes: 4

Views: 4297

Answers (5)

archer
archer

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

Ashwini Verma
Ashwini Verma

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

Rauf
Rauf

Reputation: 12842

Performance tuning includes lot and more. Please refer to this

Upvotes: 0

Arion
Arion

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

PraveenVenu
PraveenVenu

Reputation: 8337

You can refer the below MSDN link

MSDN

Also the below link

Performance tuning

Upvotes: 4

Related Questions