Rank: Member
Joined: 2/14/2007 Posts: 5 Points: 15 Location: Romania
|
hi,
I ask "How to improve asp.net performance?"
|
Rank: Member
Joined: 4/17/2007 Posts: 24 Points: 72 Location: Bulgaria
|
hi, first amd much important in web development is to learn to work with String ans StringBuilder class
|
Rank: Advanced Member
Joined: 2/10/2007 Posts: 22 Points: 66 Location: Bulgaria
|
Well, there are several things, witch plays main role in web site performance - database request, or ram and processor of your web server. Each request may decrease the performance. So you have to decide how you will get data - row by row, table by table or you can take several tables in one request and store them in dataset. It is easy to understand, that if you take 1000 records - this will decrease a lot the loading speed. If you use a grid view with paging for example, and you take 1000 records from the database at once, don`t expect your page to be loaded fast. Write your own paging code. If you have a heavy code - many and long cycles, using string+ instead string builder, often boxing and unboxing - you can expect the performance to slow down. When you are able - bring a peace of your site`s functionality to the user with javascript or ajax.
|
Rank: Administration
Joined: 2/10/2007 Posts: 77 Points: 417
|
first for you is to define performance: in short "What is performance for you?" second "What you expect by performance to your web site? " third "After that you send me e-mail and I will suggesting you."
|