面包屑 - ASP.NET - VS2008

发布于 2024-07-15 00:38:31 字数 210 浏览 9 评论 0原文

在我的旧网络应用程序 asp.net 1.1 中,我有用于站点导航的自定义“面包屑”。 我想使用 VS-2008 重做我的网站。 这是否有可以放置在主页上的内置面包屑? 如果是这样,有人能指出我正确的方向吗?

这就是我设想的

母版页具有类似导航选项的选项卡,当他们单击某个导航选项时,我将启用 SiteNavigation 控件并突出显示母版页中选定的选项卡

In my old web app, asp.net 1.1 days, i had custom 'breadcrumbs' for site navigation. I want to redo my website using VS-2008. Does this have a built in breadcrumbs which can be placed on a master page? If so can anyone point me to the right direction?

This is what i envision

Master Pages has tab like navigation options and when they click on a certain naviagtion option, i will enable the SiteNavigation control and highlight the selected tab in master pages

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

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

发布评论

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

评论(3

依 靠 2024-07-22 00:38:32

您正在寻找的是 sitemappath 对象,它要求项目中包含站点地图

what you are looking for is the sitemappath object, which requires that a sitemap be included in the project

又怨 2024-07-22 00:38:32

.NET 2.0+ 确实有一个 Bread Crumb 类型的控件,它与 SiteMap.xml 一起使用,它还允许您添加站点地图。 它相当容易使用,但站点必须静态布局,否则您必须创建一个自定义站点地图提供程序(这并不是非常困难)。 看看 此博客条目描述了面包屑的使用。

There is indeed a Bread Crumb type of control for .NET 2.0+, it works with the SiteMap.xml which will also allow you to add a sitemap. It's fairly easy to use but the site has to be statically laid out, otherwise you have to create a custom sitemap provider (which isn't terribly difficult). Take a look at This blog entry that describes using the breadcrumb.

鹿! 2024-07-22 00:38:31

使用 SiteMapPath 控件。 如果面包屑数据是静态的,请使用 Web.sitemap 文件来定义它,然后就可以了。 如果它是动态子类 SiteMapProvider 类来定义您自己的逻辑并使用标准 SiteMapPath 控件来显示它。

Use a SiteMapPath control. If the breadcrumb data is static use the Web.sitemap file to define it and you're set. If it's dynamic subclass the SiteMapProvider class to define your own logic and use a standard SiteMapPath control to display it.

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