Reduce ASP.NET menu control size (without 3rd party libraries) - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T14:56:58Zhttp://stackoverflow.com/feeds/question/5027http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/5027/reduce-asp-net-menu-control-size-without-3rd-party-libraries1Reduce ASP.NET menu control size (without 3rd party libraries)Jim2008-08-07T17:38:09Z2009-03-22T17:17:10Z
<P>I have a fairly simple ASP.NET 2.0 menu control using a sitemap file and security trimmings. There are only 21 menu options, but the results HTML of the menu is a whopping 14k. The site is hosted on our company's intranet and must be serverd to people worldwide on limited bandwidth, so I'd like to reduce the size of the menus.</P>
<P>What is the best way to do this? Does anybody have a good reference? I have the following constraints:</P>
<UL>
<LI>The solution cannot reference any 3rd part DLL files (getting approval would be a nightmare)</LI>
<LI>Must work with IE 6</LI></UL>
<P>CSS and JavaScript are fine, as long as they work with IE 6.</P>
http://stackoverflow.com/questions/5027/reduce-asp-net-menu-control-size-without-3rd-party-libraries/5029#50292Answer by KP for Reduce ASP.NET menu control size (without 3rd party libraries)KP2008-08-07T17:42:00Z2008-08-07T17:42:00Z<P>Take a look at: <A href="http://www.asp.net/CSSAdapters/Menu.aspx" rel="nofollow">http://www.asp.net/CSSAdapters/Menu.aspx</A></P>
<P>The default Menu control is rendering far too much HTML.</P>http://stackoverflow.com/questions/5027/reduce-asp-net-menu-control-size-without-3rd-party-libraries/5034#50340Answer by Stu for Reduce ASP.NET menu control size (without 3rd party libraries)Stu2008-08-07T17:45:27Z2008-08-07T17:45:27Z<P>As a side note, to reduce bandwith usage, make sure compression is on:</P>
<P><A href="http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/502ef631-3695-4616-b268-cbe7cf1351ce.mspx?mfr=true" rel="nofollow">http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/502ef631-3695-4616-b268-cbe7cf1351ce.mspx?mfr=true</A></P>http://stackoverflow.com/questions/5027/reduce-asp-net-menu-control-size-without-3rd-party-libraries/671314#6713141Answer by jagbarcelo for Reduce ASP.NET menu control size (without 3rd party libraries)jagbarcelo2009-03-22T17:17:10Z2009-03-22T17:17:10Z<p>You might have a look at my <a href="http://jagbarcelo.blogspot.com/2009/03/aspnet-menu-control-optimization.html" rel="nofollow">ASP.NET menu optimization post</a>. What I do is extracting the common part of the menu rendered in every page to an external file that is loaded and cached only once at the user browser. This way the pages are 60-70% smaller in some cases.</p>