c# - Conditionally hide or show Aspx Menu Control Item -


how hide or show menu item based on backend condition?

you can remove particular menu item follows:

menuitem mnuitem = mnu.finditem(""); // find particular item mnu.items.remove(mnuitem); 

Comments

Popular posts from this blog

haskell - Using filter on an item in a list? -

tomcat6 - Exception when stopping container for a with Spring + Quartz + Tomcat web application -

c# - Binding attached property to IEnumerable -