ASP.NET Web Site Performance Tips
When we develop any web site using any technology then we should look at the performance along with functionality. because once we deploy web site on public host then huge no.of request s may hit the website from different devices with different network configurations hence performance of web site is the primary aspect when you create web site. Below are some tips which we can adopt in any technology. Caching If same data is required among multiple users, Caching can be used. Cache stores the data on application server's cache memory. So each time when a request is made the data will come from cache memory than Database.Example, On a particular page load you want a grid of multiple records to be loaded and data to display is same for all the users.In such scenario you can place the data in cache memory. It will boost the performance to a certain height. Make Static files as external Make JavaScript and CSS external i.e create separate files and give those file path