aspmenu-control

ASP.NET Menu Control getting padded with white space on IE8

If you have used the ASP.Net menu control on your website and recently updated your browser to IE8, you will probably have noticed your menu no longer renders properly. You may also have noticed this in Firefox as well. The menu will probably look just fine in IE6 & IE7. So why is the ASP.Net menu being padded with space and why don't...

asp:Menu Not working on webhost

I'm using Visual Studio Web Express 2008 to develop an ASP.Net website. I have a master page that every page inherits from and on that master page I have the asp:menu control. On my local machine the menu control works just fine. The javascript is emitted and the links work as well. However, when I upload it to my webhost service provid...

How can I disable the Menu control from styling itself in javascript?

I'm using Visual Studio 2010 and ASP.NET 4.0 to render a Menu control as an HTML list so I can style it using CSS. Here is the code I am using below <asp:Menu ID="navlist" runat="server" Orientation="Horizontal" SkipLinkText="" ClientIDMode="Static" DataSourceID="MenuSource" MaximumDynamicDisplayLevels="0" IncludeStyleBlock="False" S...

How to get rid of ugly asp:Menu flickering?

I'm using the asp:Menu control on an ASP.NET 4.0 Webforms page with table-free rendering mode: <asp:Menu ID="MenuBase" runat="server" DataSourceID="SiteMapDataSourceMenu" Orientation="Horizontal" CssClass="contentmenu" RenderingMode="List" IncludeStyleBlock="false"> </asp:Menu> The menu has a horizontal main row with 5 or 6 m...

ASP.NET: Menu make parent items non-hyperlinks?

I have an asp:Menu control driven by a web.sitemap file. For example, the menu is like: Fruit - Apple - Orange - Strawberry Color - Blue - Red - Yellow In the sitemap, the specific fruits are children of the "Fruit" siteMapNode (likewise for the colors) The menu is setup as dynamic so Fruit and Color are static and the specific frui...

Applying Css Style to Asp:Menu MenuItem

Hi, I'm essentially creating a vertical breadcrumb to create a website navigation for a mobile (iphone) website. Similar to maybe how http://news.bbc.co.uk/sport1/hi/football/default.stm works as you click into "Premier League" Using the Asp:Menu control and a SiteMapDataSource I am binding only the current levels links within the site...

Using ASP.net Menu Control with a sitemap.

I have following sitemap defined: <siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" > <siteMapNode url="" title="Root" roles="*"> <siteMapNode url="~/Default.aspx" title="Home" roles="*" /> <siteMapNode url="~/ProjectList.aspx" title="Projects" roles="*"> <siteMapNode url="~/ProjectOverview.aspx" titl...