vb.net 面包屑导航限制

发布于 2024-10-26 05:32:50 字数 227 浏览 3 评论 0原文

我目前正在尝试在我的网站上设置面包屑,我尝试了两种不同的方法,但我得到的最大面包屑似乎只有 3 个级别。有限制吗?

Home> Hello World > Good Bye

Home> Hello World > Good Bye > Forever

例如,我似乎永远无法让 Forever 显示在面包屑上。有限制吗?

谢谢

Im currently trying to set up breadcrumbs on my site, Ive tried two different approaches and the max I have seem to get is only 3 levels on the breadcrumbs. Is there a limit to it?

Home> Hello World > Good Bye

Home> Hello World > Good Bye > Forever

E.g. I never seem to be able to get Forever to show on the breadcrumb. Is there a limit?

Thanks

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

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

发布评论

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

评论(1

客…行舟 2024-11-02 05:32:50

您使用的 asp.net SiteMapPath 正确吗?确保您尚未设置ParentLevelsDisplay
或者它是使用其他方式动态生成的?

编辑:
最后一个 Forever 是一个目录吧?获取此示例站点地图文件:

<?xml version="1.0" encoding="utf-8" ?>
<siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" >
    <siteMapNode url="" title="Home"  description="">
            <siteMapNode url="" title="1"  description="">
                <siteMapNode url="" title="2"  description="">
                     <siteMapNode url="~/test/1/2/3/Default.aspx" title="3"  description="" />
                </siteMapNode>
            </siteMapNode>
        </siteMapNode>
</siteMap>

它给出以下输出:

Sitemappath eg

所以您会看到 Default.aspx 位于文件夹 3 中,它是显示良好。
您可能想共享您的站点地图路径和文件夹结构。

You are using asp.net SiteMapPath correct? Make sure you have not set the ParentLevelsDisplay of SiteMapPath.
Or is it generated dynamically using some other means?

Edit:
The last one Forever is a directory right? Take this sample sitemap file:

<?xml version="1.0" encoding="utf-8" ?>
<siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" >
    <siteMapNode url="" title="Home"  description="">
            <siteMapNode url="" title="1"  description="">
                <siteMapNode url="" title="2"  description="">
                     <siteMapNode url="~/test/1/2/3/Default.aspx" title="3"  description="" />
                </siteMapNode>
            </siteMapNode>
        </siteMapNode>
</siteMap>

It gives this output:

Sitemappath e.g.

So you see Default.aspx is in folder 3 and it is displaying fine.
May be you might want to share your sitemappath and folder structure.

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