Why do my ASP.NET pages render slowly when placed on the server? - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T08:58:11Zhttp://stackoverflow.com/feeds/question/730657http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/730657/why-do-my-asp-net-pages-render-slowly-when-placed-on-the-server0Why do my ASP.NET pages render slowly when placed on the server?Kammie2009-04-08T15:58:00Z2009-04-14T15:00:48Z
<p>I have a simple aspx page with a GridView control. I'm loading the GridView with search results after the click of a button. Everything works, but the HTML rendering on the browser is very slow in IE with a result set > 2000 (works fine in other browsers.) I realize it's slow due to the record count, but is there a way I can make it faster? (I don't want to use paging.)</p>
<p>Oddly, it's slow only when it's hosted on Windows 2003 server. It works fine on my localhost, but on either the test site or production, the problem occurs. If I remote desktop to my test server and run it locally there, the page loads fine. The problem only occurs when I run the server hosted application from my local machine.</p>
<p>How can I resolve this issue?</p>
http://stackoverflow.com/questions/730657/why-do-my-asp-net-pages-render-slowly-when-placed-on-the-server/730679#7306791Answer by Al Katawazi for Why do my ASP.NET pages render slowly when placed on the server?Al Katawazi2009-04-08T16:03:18Z2009-04-08T16:03:18Z<p>Some simple suggestions, turn off the view state on that control. Also are you using MS AJAX, that can also cause problems. Take it out of the update panel if you are. </p>
http://stackoverflow.com/questions/730657/why-do-my-asp-net-pages-render-slowly-when-placed-on-the-server/730686#7306867Answer by Rowland Shaw for Why do my ASP.NET pages render slowly when placed on the server?Rowland Shaw2009-04-08T16:04:22Z2009-04-08T16:04:22Z<p>It works fine when transferring from localhost, as the network bottleneck is not there -- some browsers wait for the entire table to be transmitted before attempting to render - especially when not using fixed column widths (which can speed up performance); Have you looked at the size of the entire generated page?</p>
http://stackoverflow.com/questions/730657/why-do-my-asp-net-pages-render-slowly-when-placed-on-the-server/730687#7306871Answer by Brandon Montgomery for Why do my ASP.NET pages render slowly when placed on the server?Brandon Montgomery2009-04-08T16:04:25Z2009-04-08T16:04:25Z<p>If you need ViewState on the control, you can reduce the ViewState impact the GridView has on the page by disabling the ViewState on each row in the PreRender event:</p>
<pre><code> Private Sub grid_PreRender(ByVal sender As Object, ByVal e As System.EventArgs) Handles grid.PreRender
For Each item As DataGridItem In grid.Items
item.EnableViewState = False
Next
End Sub
</code></pre>
http://stackoverflow.com/questions/730657/why-do-my-asp-net-pages-render-slowly-when-placed-on-the-server/730689#7306890Answer by Canton for Why do my ASP.NET pages render slowly when placed on the server?Canton2009-04-08T16:04:51Z2009-04-08T16:04:51Z<p>Perhaps more information is needed.</p>
<p>how large is the generated html? Are there many external resources (e.g. css/js/)? Are there many images?</p>
http://stackoverflow.com/questions/730657/why-do-my-asp-net-pages-render-slowly-when-placed-on-the-server/730732#7307321Answer by Terrapin for Why do my ASP.NET pages render slowly when placed on the server?Terrapin2009-04-08T16:15:41Z2009-04-08T16:15:41Z<p>If you're not already compressing the HTTP Response, you should <a href="http://terrapinstation.wordpress.com/2008/06/12/aspnet-http-comression-and-reducing-response-size/" rel="nofollow">look into doing that</a>.</p>
<ul>
<li>Look at <a href="http://developer.yahoo.com/yslow/" rel="nofollow">Yslow</a> for FireFox (start here)</li>
<li>Compress your response with standard gzip/deflate compression</li>
<li>Do what you can to reduce the amount of data in your GridView. Elminate unecessary columns, etc.</li>
<li>Turn off viewstate</li>
<li>Use <a href="http://www.crockford.com/javascript/jsmin.html" rel="nofollow">jsmin</a> to reduce the size of your JavaScript files (if any)</li>
<li>Reduce the size of your CSS (if any)</li>
</ul>
http://stackoverflow.com/questions/730657/why-do-my-asp-net-pages-render-slowly-when-placed-on-the-server/738938#7389380Answer by ercu for Why do my ASP.NET pages render slowly when placed on the server?ercu2009-04-10T21:32:52Z2009-04-10T21:32:52Z<p>In short, do custom paging, so that it won't load all items on page load. Linq Data Source does it for you.</p>
http://stackoverflow.com/questions/730657/why-do-my-asp-net-pages-render-slowly-when-placed-on-the-server/738948#7389480Answer by Freddy Rios for Why do my ASP.NET pages render slowly when placed on the server?Freddy Rios2009-04-10T21:35:46Z2009-04-10T21:35:46Z<p>Why don't you want to use paging? 1.6 MB is a lot for the html of a page.</p>
<p>Considering you already disabled viewstate, look into reducing the amount of html by:</p>
<ul>
<li>Remove unnecessary columns</li>
<li>Use only css to style the gridview. The idea being not to repeat the same visual rules all over the HTML.</li>
<li>Avoid unnecessary markup in the columns. Look into any template columns you may have, and simplify the HTML in there (also using css to style it).</li>
</ul>
http://stackoverflow.com/questions/730657/why-do-my-asp-net-pages-render-slowly-when-placed-on-the-server/748019#7480190Answer by Vadim Kleyzit for Why do my ASP.NET pages render slowly when placed on the server?Vadim Kleyzit2009-04-14T15:00:48Z2009-04-14T15:00:48Z<p>Since the network is the bottleneck in this case, try to minify the resulting HTML. Apparently, the weight of each grid row is about 640 bytes on average (2500 records generate 1.6M payload). See if you can reduce it by removing unnecessary spaces and shortening any HTML elements IDs. Move styling, if any, from the grid to CSS, as was suggested before. If grid renders any URLs (e.g. “href” in anchors or “src” in images) try to shorten them. Also, if HTML rendered by GridView is not optimal see if you can render yourself. In order to estimate the anticipated page response time in production, factor-in your average user network speed (that may be different from the network speed of your machine).</p>
<p>If none of the above produce satisfactory result you may check the solution that we have – ASP.NET accelerator called <a href="http://stimulustechnology.com/" rel="nofollow">Web Stimulus</a>. It partially executes ASP.NET page code on the client to render the HTML on the client computer. Typical traffic reduction is 10-20 times with minimal code change.</p>