ASP.NET:菜单使父项成为非超链接?
我有一个由 web.sitemap 文件驱动的 asp:Menu 控件。
例如,菜单如下:
Fruit
- Apple
- Orange
- Strawberry
Color
- Blue
- Red
- Yellow
在站点地图中,特定水果是“Fruit”siteMapNode 的子级(颜色也是如此)菜单设置为动态,因此水果和颜色是静态的,特定水果和颜色显示在弹出/弹出菜单。父项目仅用于分类目的;没有“水果”页面。
如何使“水果”和“颜色”不是链接?
I have an asp:Menu control driven by a web.sitemap file.
For example, the menu is like:
Fruit
- Apple
- Orange
- Strawberry
Color
- Blue
- Red
- Yellow
In the sitemap, the specific fruits are children of the "Fruit" siteMapNode (likewise for the colors) The menu is setup as dynamic so Fruit and Color are static and the specific fruits and colors show up in the popup/flyout menu. The parent items are just for categorization purposes; there's no "Fruit" page.
How do I make it so "Fruit" and "Color" are NOT links?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我最终添加了一个事件处理程序来处理这个问题。它并不是很理想,但它可以完成工作。
...
I ended up adding an event handler to handle this. It's not really ideal but it does the job.
...
与颜色一样
Like wise with Colors
只需从 siteMapNode 中删除“url”,如下所示:
Simply remove the "url" from siteMapNode, like this: