Web Menu Control
-
Hi I want an ASP.NET web menu control. I want to show menu items according to the rights of a user logging in. I get rights of a user from the database and i store these rights in a dataset. Now I want to show only those menu items of which the user has access rights. If anybody has this kind of control, please send me one. My email address is contacthunjan@yahoo.com shelly
-
Hi I want an ASP.NET web menu control. I want to show menu items according to the rights of a user logging in. I get rights of a user from the database and i store these rights in a dataset. Now I want to show only those menu items of which the user has access rights. If anybody has this kind of control, please send me one. My email address is contacthunjan@yahoo.com shelly
I have the same problem On my page i have a menu named muNavigation My problem is exactly the same as yours, this is my code (sample) but the child items does not pop out on hover muNavigation.Items.Clear(); muNavigation.MaximumDynamicDisplayLevels = 1; muNavigation.StaticDisplayLevels = 1; MenuItem miItem = new MenuItem(); miItem.Text = "Hello"; miItem.Selectable = false; MenuItem miChildItem = new MenuItem(); miChildItem.Text = "world"; miItem.ChildItems.Add(miChildItem); muNavigation.Items.Add(miItem); I cant figure this out. Anybody any ideas? Fanx There is someone in my head but it's not me - Pink Floyd