如何在自定义 XMLSiteMapProvider 中获取信息表单页面

发布于 2024-08-12 17:53:14 字数 576 浏览 4 评论 0原文

首先我需要告诉你,我在这个项目上使用了 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 技术交流群。

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

发布评论

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

评论(1

烟凡古楼 2024-08-19 17:53:14

我通过这样做成功实现了我的目标:

在 web.config 文件中:

<siteMap defaultProvider="RegularXMLSiteMapProvider">
  <providers>
    <add name="RegularXMLSiteMapProvider" type="System.Web.XmlSiteMapProvider" siteMapFile="~/Web.sitemap" />
    <add name="EnhancedXMLSiteMapProvider" type="MyApp.App_Code.EnhancedXMLSiteMapProvider, MyApp" siteMapFile="~/Web.sitemap"/>
  </providers>
</siteMap>

每当我在常规页面上时,我都会使用默认提供程序。当我在文章页面上时,我执行以下操作:

protected void Page_Load(object sender, EventArgs e)
    {
        LoadArticle();

        MasterPages.MyMasterPage myMaster = (MasterPages. MyMasterPage)this.Master;
        myMaster.MySiteMapPath.SiteMapProvider = "EnhancedXMLSiteMapProvider"; 
    }

最后,在提供程序的 CurrentNode 属性中,我获得文章标题:

MyApp.ArticlePage page = (MyApp.ArticlePage)HttpContext.Current.Handler;
                    if (page != null)
                    {
                        if (!string.IsNullOrEmpty(page.Article.Title))
                        {
                            articleName = page.Article.Title;
                        }
                    }

I managed to achieve my goal by doing this:

In the web.config file:

<siteMap defaultProvider="RegularXMLSiteMapProvider">
  <providers>
    <add name="RegularXMLSiteMapProvider" type="System.Web.XmlSiteMapProvider" siteMapFile="~/Web.sitemap" />
    <add name="EnhancedXMLSiteMapProvider" type="MyApp.App_Code.EnhancedXMLSiteMapProvider, MyApp" siteMapFile="~/Web.sitemap"/>
  </providers>
</siteMap>

Whenever I am on a regular page, I use the default provider. When I am on the article page, I do this:

protected void Page_Load(object sender, EventArgs e)
    {
        LoadArticle();

        MasterPages.MyMasterPage myMaster = (MasterPages. MyMasterPage)this.Master;
        myMaster.MySiteMapPath.SiteMapProvider = "EnhancedXMLSiteMapProvider"; 
    }

And finally, in the provider's CurrentNode property I get the article title:

MyApp.ArticlePage page = (MyApp.ArticlePage)HttpContext.Current.Handler;
                    if (page != null)
                    {
                        if (!string.IsNullOrEmpty(page.Article.Title))
                        {
                            articleName = page.Article.Title;
                        }
                    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文