up vote 1 down vote favorite
1
share [g+] share [fb]

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.

What is the best way to do this? Does anybody have a good reference? I have the following constraints:

  • The solution cannot reference any 3rd part DLL files (getting approval would be a nightmare)
  • Must work with IE 6

CSS and JavaScript are fine, as long as they work with IE 6.

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

Take a look at: http://www.asp.net/CSSAdapters/Menu.aspx

The default Menu control is rendering far too much HTML.

link|improve this answer
the only problem here is IE 6 does not support pure CSS menus. – Richard Mar 22 '09 at 17:40
I've also had problems with the "Selectable" property on a menuItem being ignored once the CSSAdapters were applied to a menu. – Dav Evans May 13 '09 at 12:16
feedback

You might have a look at my ASP.NET menu optimization post. 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.

link|improve this answer
Good Job and nice post on the Menu Control Optimization. +1 – KP. Mar 23 '09 at 13:06
feedback

As a side note, to reduce bandwith usage, make sure compression is on:

http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/502ef631-3695-4616-b268-cbe7cf1351ce.mspx?mfr=true

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.