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

c# - how to write client side events functions for the combobox items -

exception - Python, pyPdf OCR error: pyPdf.utils.PdfReadError: EOF marker not found -