具有多个路由的 Asp.net SitePathMap
我有一个有两条路线的网站。基本上用户可以执行以下操作之一:
项目 ->迭代->故事
或
项目 ->故事
我有两个 .sitemap 文件来容纳两条不同的路线(因为两个节点不能以相同的名称存在),但是当我浏览站点并从迭代页面移动到故事页面时,它只显示项目的地图路径故事。
有谁知道如何使用 SitePathMap 进行路由?
I have a web site with two routes. Basically the user can do one of the following:
Project -> Iteration -> Story
or
Project -> Story
I have two .sitemap files to accomodate the two different routes (as two nodes cannot exist with the same name) however when I browse the site and move from the iteration page to the story page, it only shows the map path for Project to story.
Does anyone have an ideas on how to do Routing with SitePathMap?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我能够通过根据之前的 SiteMapNode 以编程方式更改站点地图提供程序来解决我的问题。
I was able to solve my problem by programmatically changing the sitemap provider depending on the previous SiteMapNode.