Re: How to increase performance of web application created in asp.net
1- For performance .. output caching, partial page caching, Caching object to hold frequently requested objects and datasets etc... enable caching for SQLdataprovide if you are using one.
2- use of Async pages & callback mechanism can also help in performance since Async pages free up the Asp.Net thread quicker then a normal synchronous request thus more free ASP.Net threads in the thread pool means more clients can be accomodated and you achieve better performance.
Re: How to increase performance of web application created in asp.net
1. Make use of XML for all frequently used data.
2. Use as many repeater's as possible than that of Datagrid.
3. Use of javascript for most of the events that are within the controls.
4. Use of javascript for the calculations that can be done without server interaction.
5. Use validators or Javascript functions for all validations.
6. If the validations are done in javascript,use regular expressions.
7. Use of user controls also Helps(Code is reduced).
Re: How to increase performance of web application created in asp.net
increase performance of your webapplication
1.Light pages and lean and Quality HTML
2.The less HTML code you have, the better, as it makes it easier for the search engine to index your page
3.Aim for a total page weight of 50 KB for any page (that’s including graphics). Certainly, anything over 100 KB is going to be slow, and some search engines don’t like pages that are over 100 KB.
4.Don’t use Frames at all and use Flash and AJAX sparingly for best SEO results
Nithya.R
[If its useful to you,then please mark thanks]