如何在自定义 XMLSiteMapProvider 中获取信息表单页面
首先我需要告诉你,我在这个项目上使用了 URL 重写。
对于文章页面,这是 url: www.mysite.com/section1/section2/month/day/year/modifiedArticleName
对于面包屑,我将 SiteMapPath 控件与自定义 XMLSiteMapProvider 一起使用,因为我无法将所有文章保留在 xml 文件中。在此提供程序的 CurrentNode 属性中,如果 url 是一篇文章,我将创建一个新的 SiteMapNode,将其链接到相应的父节点并返回它。
问题是我需要向该节点提供文章名称。我无法从网址中获取它,因为正如您在上面看到的那样,网址使用了修改后的文章名称。所以我需要从页面获取它。
在 CurrentNode 属性中,我能够获取当前运行页面的实例,但是,由于文章是在 Page_Load 上加载的,所以我还没有标题。
我想到了一个解决方案,但我不确定具体如何实施。因此,我应该有 2 个 XMLSiteMapProvider,默认的一个和我自定义的一个。并且仅在我的文章页面上使用自定义页面,仅在加载文章详细信息后才对其进行初始化。有人能指出我正确的方向吗?
干杯。
First of all I need to tell you that I use URL Rewriting on this project.
For the article page this is the url : www.mysite.com/section1/section2/month/day/year/modifiedArticleName
For breadcrumbs I use SiteMapPath control with a custom XMLSiteMapProvider because I can't keep all my articles in the xml file. In this provider, in the CurrentNode property, if the url is one of an article, I create a new SiteMapNode, link it to the appropriate parent and return it.
The problem is that I need to provide to that node the article name. I can't get it from the url, because, like you see above, the url uses a modified article name. So I need to get it from the page.
In the CurrentNode property I am able to get an instance of the current running page but, since the article is loaded on Page_Load, I don't have the title yet.
I thought about a solution but I'm not sure exactly how to implement it. So, I should have 2 XMLSiteMapProvider, the default one and my custom one. And use the custom one only on my article page, initializing it only after I load my article details. Can somebody point me to the right direction?
Cheers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通过这样做成功实现了我的目标:
在 web.config 文件中:
每当我在常规页面上时,我都会使用默认提供程序。当我在文章页面上时,我执行以下操作:
最后,在提供程序的 CurrentNode 属性中,我获得文章标题:
I managed to achieve my goal by doing this:
In the web.config file:
Whenever I am on a regular page, I use the default provider. When I am on the article page, I do this:
And finally, in the provider's CurrentNode property I get the article title: