The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
14 views

Is it possible to assign an Id to an asp:MenuItem?

I have an asp:Menu which currently has 4 menuitems within it. I have been able to set the id for the menu as a whole but the hyperlinks for the menuitems are mostly the same. I would like to be able ...
0
votes
0answers
53 views

asp:menu is not working in production server

i am facing a problem in asp:menu its working in my local host but when i move it to production server its not working note that the iis server in local host is iis7 but in production server is iis6 ...
0
votes
1answer
73 views

ASP:MENU On click open submenu

I have the following ASP:Menu <asp:Menu id="menu_mymenu" runat="server" OnMenuItemClick="menu_mymenu_Click"> <Items> <asp:MenuItem Text="menu_1" Value ="menu_1"> ...
0
votes
0answers
73 views

Asp menu control not display proper background

I am developing an web site in asp.net 4.0 it works proper on my local system. And i have iis7 installed on my server OS windows server 2008 R2. When i publish it and upload it on server. After ...
0
votes
1answer
353 views

CssClass is not working for my asp menu - all code attached

I copied and pasted the same exact css and asp code into another project and the CSS just will not take to the asp:menu control and I cannot figure it out. Also, when I view source the menu is ...
0
votes
0answers
41 views

<asp:menu> tag expands while page is loading

Hi help please also i used the <asp:menu> and it expands vertically while loading how do i fix it help please....you can check it at http://ccae2manila.mc.edu.ph/ <asp:Menu ...
0
votes
0answers
176 views

LinkButton Embedded in Menu - Open New Tab on Click

I have an asp:Menu that we use for a dropdown navigation on our site and I have a requirement that if a user clicks on an external link that it opens in a new tab. Currently this is what happens in ...
1
vote
0answers
44 views

ASP Menu is not highlighting when providing Navigate to URL properties

I have one question regarding <asp:menu> property in ASP.NET that when i am creating an ASP menu and provide StaticSelectedStyle it will highlight the previously selected menu item but, when i ...
1
vote
1answer
65 views

Closing ASP menu when moving mouse

I'm working with a project that has as ASP menu (), which I can't get to close. All I want it to do is to collapse when the mouse is not hovering it. Is there a setting or something to fix this? Maybe ...
0
votes
1answer
642 views

can't display asp:menu, control not showing in runtime

I have a strange problem. I added a asp:menu control to my .master page. Also added some items and subitem on it. But, I dont know why, I can see the control at design time, but I can't find it in ...
0
votes
1answer
251 views

How to generate breadcrumb to dynamic asp menu in Asp.net?

I have a dynamically generated menu (C#), like this: MenuItem(string text, string value, string imageUrl, string navigateUrl, string target) MenuItem AdminLevel1 = new MenuItem("Admin", "Admin"); ...
-1
votes
3answers
146 views

How to display some stuff in the same page instead of redirecting to another page while clicking the submenu of asp:menu?

I am using asp:menu. My aspx code is: <body> <form id="form1" runat="server"> <div> <asp:Menu ID="Menu_Library" runat="server"> </asp:Menu> ...
0
votes
3answers
307 views

How to disable click action in asp menu in asp.net

I have a dynamically generated menu (C#), like this: MenuItem(string text, string value, string imageUrl, string navigateUrl, string target) MenuItem AdminLevel1 = new MenuItem("Admin", "Admin"); ...
0
votes
3answers
555 views

How to set onClick event in ASP Menu MenuItem

I have a dynamically generated menu (C#), like this: MenuItem(string text, string value, string imageUrl, string navigateUrl, string target) MenuItem AdminLevel1 = new MenuItem("Admin", "Admin"); ...
1
vote
0answers
205 views

SiteMapNode Attributes - values being lost (SharePoint 2010)

OK - I've created a custom navigation provider that inherits PortalSiteMapProvider and I'm trying to extend my class via the GetChildNodes method (Simple example here). Essentially what I'm trying to ...
0
votes
0answers
134 views

change menu item text asp.net

Hi I want to change a text of a special item of my menu in asp.net. how can i do that? I found this cod, but it doesn't work! my cod: Menu2.FindItemByText("Go to ...
0
votes
1answer
82 views

Is it in any way possible to get the asp:menu items sepparated in multiple-columns?

Is there any way to get the asp:menu items separated into multiple columns? I get the menu items from a System.Web.XmlSiteMapProvider and then "forward" them to a SiteMap to be used with the asp:menu. ...
0
votes
1answer
58 views

Hoy to make the DynamicItem of a ASP.Net Menu nice lookin?

this is my menu with 5 items in main and 4 children-items in one of the menu-items. http://s3.imgimg.de/uploads/Unbenannt245def1cpng.png It's very ugly and I dont know how make it better looking, ...
0
votes
2answers
543 views

How to apply the style for selected menu item in ASP.NET 3.5?

I need to set the background for the currently active menu item? I have used these <StaticSelectedStyle CssClass="selectedMenuItem" /> CSS: .DivLeftContent .selectedMenuItem:visited { ...
0
votes
0answers
146 views

Asp.Net Asp Menu changing the order of the selected item

I have an aspmenu in my site and I'm applying the "selected" atribute for the item who has the same url than the actual page so I can apply the StaticSelectedStyle to the item. The problem is that ...
0
votes
2answers
592 views

ASP Menu width not setting to 100%

I'm making a Vertical Navigation bar using Asp Menu. and I'm trying to set the Width to 100% but It remains as it is. Here is the Code i'm using. <div id="leftcolumn" > <asp:Menu ID="Menu1" ...
0
votes
1answer
600 views

ASP:Menu : Need to apply CSS to make bulleted lists

I am using ASP:Menu and I would like to have the menu shown as below. Please suggest how to apply the CSS and what changes should I make? Products Instock Out-of-Stock Orders Purchase Orders ...
2
votes
1answer
2k views

asp:menu : need to show sub-menu items when page is loaded with different style

<asp:SiteMapDataSource runat="server" ID="RelativeSiteMapDataSource" StartFromCurrentNode="False" ShowStartingNode="False" SiteMapProvider="CatalogSiteMap" /> <asp:Menu ...
1
vote
2answers
529 views

how to change fontcolor of asp:menu that read items from sitemap

how can i change my fontcolor of asp:menu that it read items from sitemap? ccsClass not worked on it! this is my code: <asp:Menu ID="Menu1" runat="server" DataSourceID="SiteMapDataSource1" ...
0
votes
1answer
175 views

ASP.NET Menu html structure changes

I'm using the ASP.NET menu feature and I've come across some strange behaviour which has become particularly difficult to diagnose. SOMETIMES, the menu control uses a HTML structure that uses ...
0
votes
0answers
171 views

.net Menu & siteMap providers not displayed

I'm developing the mobile version of my ASP.NET MVC 2 website. I wanted to define a specific siteMap for the mobile pages, but I could not make it working so far. Here below the code I wrote. ...
-1
votes
1answer
139 views

How to Display The NavigationUrl of Menu on div

I have an ASP.net page designed like this as shown below: <%@ Page Title="" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true" CodeFile="MyAccount.aspx.cs" Inherits="MyAccount" ...
0
votes
3answers
230 views

SiteMap Globalisation not working

The below information is all about displaying the language in france. But its not displaying any data why? I tried lot of methods however no use. I tried lot of methods however no use. I tried lot of ...
0
votes
0answers
76 views

creating menu in asp.net the horizaontal orientation the multiple submenus, their visiblity should be just below parent

I want to create menu in asp.net, submenus may have submenus & should be visible just below its parent menu. Not in side ways fashion. Like Menu | ChildMenu ...
0
votes
1answer
40 views

DIVS not validating when used in a custom ASP:Menu

My Code below is generated from a StaticItemTemplate in an ASP:Menu. The code and the link does as it pleases, however it fails validation. Output code is as follows <li> <a ...
0
votes
1answer
586 views

Displaying the child items of the current node in a static ASP:Menu

I'm trying to build a vertical, static ASP Menu from the SiteMap file in which the child items for a node only display if they or their parent node are currently selected. For instance, say my SiteMap ...
1
vote
1answer
533 views

How to configure multiple sitemaps with asp:menu control

It's driving me nuts. I've searched and tried and searched and tried ... now I ask for your help! I have an asp:menu control that uses a sitemap. Once the user is authenticated, I want to dynamically ...
1
vote
3answers
5k views

horizontal asp.net menu displaying as a vertical list

http://i44.tinypic.com/5ureav.png When my pages render occasionally the horizontal menu displays like that. Why? <asp:Menu ID="NavigationMenu" runat="server" CssClass="menu" ...
0
votes
2answers
417 views

Asp.net Menu Control - Dynamic menus show on page load

I have an Asp.Net Menu control that displays across the top of our page. When the page is loaded, all the dymanic menus (the ones that fly out on mouseover) display until the page finishes loading, ...
0
votes
1answer
906 views

Turn off link on menu items without URLs

I am building a menu for my asp.net application using the Menu control which is in turn being fed by a table via a Hierarchical data object. It works great, except that I cannot figure out how to ...
1
vote
1answer
584 views

Strange visual artifact in the ASP.NET menu with a Master page

I was wondering why am I getting this weird visual artifact? I have a web app ASP.NET project that is configured with a master page. The master page has the top menu like so: <asp:Menu ...
0
votes
1answer
263 views

asp:Menu in master page pushes the content below on hover

I’m working on asp.net web site in .net 4.0 framework (VS 2010) in Win XP SP2. In site.master page I have a control and it is populated dynamically. All is well in populating the control, but when ...
0
votes
1answer
2k views

ASP:MENU I need to show submenu items only on click

I have an asp:menu and I have for eg 3 menuItem: First Second Third and the second item have 2 submenuItems i want to show the 2 submenuitems only when I click on the Second menuitem not when I hover ...
0
votes
1answer
316 views

ASP.NET Menu Caching?

I am currently adding functionality in a website that uses the Menu web control. Within the website there are different roles which require a different set of navigation options to appear depending ...
1
vote
0answers
234 views

How to Remembering Selected Menu Item on asp:menu control

Work on Asp.net C# 2008.My master page look like I've got a menu control that I'm using for my navigation. It's bound to a sitemap datasource ,datasource value comes from database and that works ...
0
votes
1answer
248 views

asp menu orientation

Hello I have an asp:menu in my website that is ignoring my horizontal declaration and is rendering vertically. <asp:Menu ID="mnuMain" runat="server" Orientation="Horizontal" BackColor="#414042" ...
0
votes
1answer
601 views

How to make menu's second level static

I am using an asp:menu control to display a menu. It uses a SiteMapDataSource for it's data. I would like to see make the top two level static and the other levels appear if the mouse hover's over ...
0
votes
2answers
575 views

ASP:Menu.SelectedValue not working

I've been trying to use ASP:Menu.SelectedValue property but it is not working so if anyone has used this before please read on. Here is the code. <asp:Menu ID="Menu1" runat="server" ...
0
votes
1answer
465 views

ASP.NET Dropdown Menu not refreshing data

I am constructing an ASP.NET Menu using an asp:XmlDataSource and setting the Data property and binding the Menu. Everything works well until I have to change the menu. For instance when I remove a ...
4
votes
1answer
520 views

PathSeparator is not rendering in asp menu control

PathSeparator is not rendering in asp menu control, below is my code <asp:Menu ID="Menu1" runat="server" Orientation="Horizontal" PathSeparator=">" StaticDisplayLevels="10"> <Items> ...
1
vote
2answers
940 views

ASP.NET Menu control changing position after postback

I am currently testing a menu in ASP.NET I've recently made using asp:menu control. The menu is just as I want it to be right now, but whenever there is a postback that updates the whole page, it ...
0
votes
2answers
539 views

Different asp:menu on a user basis

I have a oracle database which stores menu and user data, for a local Intranet. The data includes which usesr have access to which pages. Originally I created a class which extened the ...
2
votes
1answer
1k views

Difference between these WebKit ASP:Menu fixes

I know there are a ton of posts on the ASP:Menu vs. WebKit issue in general, but I cannot find one that answers my question. I frequently see people recommending two different methods to fix the ...
1
vote
2answers
1k views

IE8 Compatibility View breaks asp:menu

I need to have my ASP.NET web application support both 8 and prior versions of the IE browser. However, when I click the "broken page" button on my IE8 address bar to switch to Compatibilty View, ...
4
votes
2answers
1k views

Tweaking ASP.NET Menu control like a mega dropdown

Platform: Website development on ASP.NET 4.0(Webforms) with C#. Situation: My rendered ASP.NET Menu control is horizontal and has three levels of data. And I have set StaticDisplayLevels="1" so that ...

1 2