有条件地隐藏或显示 Aspx 菜单控制项

发布于 2024-11-06 21:17:24 字数 24 浏览 0 评论 0原文

如何根据后端条件隐藏或显示菜单项?

How do I hide or show a menu item based on a backend condition?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

只为守护你 2024-11-13 21:17:24

您可以按如下方式删除该特定菜单项:

MenuItem mnuItem = mnu.FindItem(""); // Find particular item
mnu.Items.Remove(mnuItem);

You can remove that particular menu item as follows:

MenuItem mnuItem = mnu.FindItem(""); // Find particular item
mnu.Items.Remove(mnuItem);
明媚如初 2024-11-13 21:17:24

找到了几个链接。基本上看起来这会成功......

MyMenu.Items(1).Visible = False

任何其中应该为您提供隐藏菜单项所需的内容。

Found a few links. Basically it looks like this will do the trick...

MyMenu.Items(1).Visible = False

Any of those should give you what you need to hide menu items.

够运 2024-11-13 21:17:24

我认为你需要从菜单中删除它:

protected void MyMenu_MenuItemDataBound(object sender, MenuEventArgs e)
    {
        if (e.Item.Text == "Menu Item To Remove")
        {
             MyMenu.Items.Remove(e.Item);
        }
    }

I think you need to remove it from the Menu:

protected void MyMenu_MenuItemDataBound(object sender, MenuEventArgs e)
    {
        if (e.Item.Text == "Menu Item To Remove")
        {
             MyMenu.Items.Remove(e.Item);
        }
    }
灰色世界里的红玫瑰 2024-11-13 21:17:24

试试这个:

Public Boolean Condition
{
   get { ... }
}


<asp:Menu ID="..." runat="server">
  <Items>
    <asp:MenuItem Text="..." Value="..." Visible="<%# this.Condition %>" />

    .....
  </Items>
</asp:Menu>

Try this:

Public Boolean Condition
{
   get { ... }
}


<asp:Menu ID="..." runat="server">
  <Items>
    <asp:MenuItem Text="..." Value="..." Visible="<%# this.Condition %>" />

    .....
  </Items>
</asp:Menu>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文