Speeding up an ASP.Net Web Site or Application - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T13:04:47Z http://stackoverflow.com/feeds/question/11500 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/11500/speeding-up-an-asp-net-web-site-or-application 15 Speeding up an ASP.Net Web Site or Application Rob Allen 2008-08-14T18:52:54Z 2008-11-20T09:06:08Z <p>I have an Ajax.Net enabled ASP.Net 2.0 web site. Hosting for both the site and the database are out of my control as is the database's schema. In testing on hardware I do control the site performs well however on the client's hardware, there are noticeable delays when reloading or changing pages. </p> <p>What I would like to do is make my application as compact and speedy as possible when I deliver it. One idea is to set expiration dates for all of the site's static resources so they aren't recalled on page loads. By resources I mean images, linked style sheets and JavaScript source files. Is there an easy way to do this?</p> <p>What other ways are there to optimize a .Net web site?</p> <p>UPDATE: I've run YSlow on the site and the areas where I am getting hit the hardest are in the number of JavaScript and Style Sheets being loaded (23 JS files and 5 style sheets). All but one (the main style sheet) has been inserted by Ajax.net and Asp. Why so many? </p> http://stackoverflow.com/questions/11500/speeding-up-an-asp-net-web-site-or-application/11506#11506 0 Answer by Campbell for Speeding up an ASP.Net Web Site or Application Campbell 2008-08-14T18:55:21Z 2008-08-14T18:55:21Z <p>You could turn on compression based on your client supporting it. See this article: <a href="http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/d52ff289-94d3-4085-bc4e-24eb4f312e0e.mspx?mfr=true" rel="nofollow" title="excanvas">link text</a></p> http://stackoverflow.com/questions/11500/speeding-up-an-asp-net-web-site-or-application/11507#11507 0 Answer by GateKiller for Speeding up an ASP.Net Web Site or Application GateKiller 2008-08-14T18:55:58Z 2008-08-14T18:55:58Z <p>Static resources shouldn't be resent unless changed. IIS will send a response code which tells the browser to use the cached version.</p> http://stackoverflow.com/questions/11500/speeding-up-an-asp-net-web-site-or-application/11521#11521 16 Answer by Darren Kopp for Speeding up an ASP.Net Web Site or Application Darren Kopp 2008-08-14T19:03:58Z 2008-08-14T19:08:26Z <ol> <li><a href="http://weblogs.asp.net/scottgu/archive/2008/05/12/visual-studio-2008-and-net-framework-3-5-service-pack-1-beta.aspx" rel="nofollow">Script Combining in .net 3.5 SP1</a></li> <li><a href="http://developer.yahoo.com/performance/rules.html" rel="nofollow">Best Practices for fast websites</a></li> <li>HTTP Compression (gzip)</li> <li>Compress JS / CSS (different than http compression, minify javascript) <ol> <li><a href="http://developer.yahoo.com/yui/compressor/" rel="nofollow">YUI Compressor</a></li> <li><a href="http://www.codeplex.com/YUICompressor" rel="nofollow">.NET YUI Compressor</a></li> </ol></li> </ol> <p>My best advice is to check out the <a href="http://developer.yahoo.com/YUI" rel="nofollow">YUI content</a>. They have some great articles that talk about things like <a href="http://www.alistapart.com/articles/sprites/" rel="nofollow">CSS sprites</a> and have some <a href="http://developer.yahoo.com/yui/imageloader/" rel="nofollow">nice javascript libraries to help reduce the number of requests</a> the browser is making.</p> http://stackoverflow.com/questions/11500/speeding-up-an-asp-net-web-site-or-application/11528#11528 2 Answer by DevelopingChris for Speeding up an ASP.Net Web Site or Application DevelopingChris 2008-08-14T19:06:44Z 2008-08-14T19:06:44Z <p>Turn viewstate off by default, it will be a night and day difference on even the most simple pages.</p> http://stackoverflow.com/questions/11500/speeding-up-an-asp-net-web-site-or-application/11534#11534 0 Answer by Kev for Speeding up an ASP.Net Web Site or Application Kev 2008-08-14T19:10:06Z 2008-08-14T19:10:06Z <p>I think you really need to be able to get some actual PerfMon data/telemetry from the app whilst running in production to be able to make an enlightened decision about what to optimise. </p> <p>As a throw away tip I'd make sure your app is deployed as a <em>Release</em> build and set debug="false" in the '<em>compilation</em>' section of your web.config.</p> http://stackoverflow.com/questions/11500/speeding-up-an-asp-net-web-site-or-application/11537#11537 5 Answer by Pascal for Speeding up an ASP.Net Web Site or Application Pascal 2008-08-14T19:11:07Z 2008-08-14T19:11:07Z <p>If you are using Firefox to test your website, you might want to try a nifty Firefox extension from Yahoo! called <a href="https://addons.mozilla.org/en-US/firefox/addon/5369" rel="nofollow">YSlow</a>. </p> <p>It analyzes your web pages and provides grades from A-F (A being the Best and F being the worst) for each of the best practices, for high performance websites. It will help you to track down the elements of your website which you could optimize to gain speedups.</p> http://stackoverflow.com/questions/11500/speeding-up-an-asp-net-web-site-or-application/11570#11570 0 Answer by John Christensen for Speeding up an ASP.Net Web Site or Application John Christensen 2008-08-14T19:28:00Z 2008-08-14T19:28:00Z <p>You seem to be starting by assuming that your problem is download size - that may not necessarily be the case. You should do some experimentation with your ASP.NET site to determine if there are areas in your code which are causing undue delays. If it turns out that download size is not your problem, you'll need to find ways to cache your results (look into output caching, which is an ASP.NET feature) or optimize your code.</p> <p>In any case - the first step when looking at a performance issue is <em>always</em> to verify your assumptions first, then decide on a course of action.</p> http://stackoverflow.com/questions/11500/speeding-up-an-asp-net-web-site-or-application/11616#11616 1 Answer by Jon Sagara for Speeding up an ASP.Net Web Site or Application Jon Sagara 2008-08-14T19:53:55Z 2008-08-14T19:53:55Z <p>Have you tried these tips?</p> <p><a href="http://weblogs.asp.net/haroonwaheed/archive/2008/06/30/ASP.NET-Performance-Tips.aspx" rel="nofollow" title="excanvas"><a href="http://weblogs.asp.net/haroonwaheed/archive/2008/06/30/ASP.NET-Performance-Tips.aspx" rel="nofollow">http://weblogs.asp.net/haroonwaheed/archive/2008/06/30/ASP.NET-Performance-Tips.aspx</a></a></p> http://stackoverflow.com/questions/11500/speeding-up-an-asp-net-web-site-or-application/11912#11912 1 Answer by Terrapin for Speeding up an ASP.Net Web Site or Application Terrapin 2008-08-15T02:53:37Z 2008-08-15T02:53:37Z <p>I wrote a <a href="http://terrapinstation.wordpress.com/2008/06/12/aspnet-http-comression-and-reducing-response-size/" rel="nofollow" title="excanvas">blog post</a> about improving ASP.NET page performance this a couple months back. Here are some quick &amp; easy ways -</p> <ul> <li>Turn off view state</li> <li>Turn off event validation</li> <li>Implement HTTP gzip/deflate compression to reduce the response size (number of bytes the server has to send back to the client)</li> <li>Try to optimize/minimize your database calls for each request</li> </ul> http://stackoverflow.com/questions/11500/speeding-up-an-asp-net-web-site-or-application/32043#32043 0 Answer by Hmobius for Speeding up an ASP.Net Web Site or Application Hmobius 2008-08-28T11:43:02Z 2008-08-28T11:43:02Z <p>You could start looking at caching strategies. Static files like CSS (even compressed ones) and images (even optimized ones) should only need to be downloaded once by the browser for a period of time. </p> <p>Scirpt combining for AJAX has already been mentioned, but I didn't notice reference to the ScriptReferenceProfiler MS has released on codeplex to help figure out what to combine. Mike Ormond <a href="http://blogs.msdn.com/mikeormond/archive/2008/06/26/asp-net-ajax-scriptreferenceprofiler.aspx" rel="nofollow">has a good start point on this</a>.</p> <p>Another tip if you're doing a lot of INSERTs to your database is to double check your server's disk caching is switched on. Case in point, I had an data importer doing 1.2 million inserts during a run. Took 4 hours and change without caching on. Took 16 minutes with it on. </p> http://stackoverflow.com/questions/11500/speeding-up-an-asp-net-web-site-or-application/88521#88521 0 Answer by apathetic for Speeding up an ASP.Net Web Site or Application apathetic 2008-09-17T22:58:58Z 2008-09-17T22:58:58Z <p>You could also look at ASP.NET output caching, which can be applied fairly granularly to different portions of your page:</p> <p><a href="http://msdn.microsoft.com/en-us/library/xsbfdd8c(VS.71).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/xsbfdd8c(VS.71).aspx</a></p> http://stackoverflow.com/questions/11500/speeding-up-an-asp-net-web-site-or-application/304718#304718 0 Answer by Thomas Hansen for Speeding up an ASP.Net Web Site or Application Thomas Hansen 2008-11-20T09:06:08Z 2008-11-20T09:06:08Z <p>A general thing when using ASP.NET and Ajax (any Ajax library) together is to avoid elephanting your Page_Load and Page_Init (and their method counterparts) things since these will be executing on every Ajax Request.</p> <p>When that is said I would seriously ditch ASP.NET AJAX and use <em>anything</em> else...</p> <p>Anthem.NET, AjaxPRO.NET, jQuery or whatever else than ASP.NET AJAX...</p> <p>Of course I would use <a href="http://ra-ajax.org" rel="nofollow">Ra-Ajax</a> myself since that's my project. But then again I am biased...</p>