创建符合 Google 标准的动态 XML 站点地图

发布于 2024-09-11 19:25:16 字数 335 浏览 6 评论 0原文

我想创建一个动态(从数据库获取数据)XML 站点地图,我可以将其提交给 Google 网站管理员工具。

令人惊讶的是,我在网上找不到任何最新的控件/代码来执行此操作。我发现的最新代码是 http://weblogs。 asp.net/bleroy/archive/2005/12/02/432188.aspx 适用于 ASP.Net 2.0。我不介意使用这个,但我怀疑它已经过时了。

有人可以指出我完成此任务的代码方向吗?

I want to create a dynamic (fetching data from the database) XML sitemap which I can submit to Google webmaster tools.

Surprisingly, I couldn't find any recent controls/code online to do this. The most recent code I found was this http://weblogs.asp.net/bleroy/archive/2005/12/02/432188.aspx which is for ASP.Net 2.0. I don't mind using this, but I suspect it's outdated.

Can somebody please point me in the direction of code which accomplishes this?

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

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

发布评论

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

评论(2

比忠 2024-09-18 19:25:16

几个选项包括:

ASP.Net 站点地图基础设施。它允许您编写像这样的自定义站点地图提供程序 one,它使用 Micosoft Access 来生成站点地图。

您还可以在此网站上找到一个非常简单的站点地图生成器项目。

另一种选择(也是有趣的学习体验)是通过查看站点地图协议来编写自己的协议,并使用 Linq To SQL 和 Linq To Xml 来生成格式。这是 示例使用 Linq To SQL 和 Linq To XML 生成 XML。

最后,Google 还接受 RSS/Atom 提要,因此您可以生成其中之一。如果您选择此路线,则可以使用 SyndicateFeed 类。还有一些开源选项可用。

A couple of options include:

The ASP.Net SiteMap infrastructure. It allows you to write a custom sitemap provider like this one, which uses Micosoft Access, to generate a sitemap.

You can also find a very simple sitemap generator project on this site.

Another option (and fun learning experience) is to write your own by just looking at the sitemap protocol, and using Linq To SQL along with Linq To Xml to generate the format. Here is an example uses Linq To SQL and Linq To XML to generate XML.

Finally, Google also accepts RSS/Atom feeds, so you could generate one of those instead. If you go this route then you can make use of the SyndicationFeed class. There are also a couple open source options available.

谁与争疯 2024-09-18 19:25:16

实际上我最近刚刚使用 LinqToXMl

如何在生成动态时正确生成 xsi:schemalocation 属性sitemap.xml 与 LINQ to XML?

实际上,该代码返回的字符串直接写入 Response 对象。我使用 .ashx HttpHandler 将内容作为 XML 传递,并使用路由以 sitemap.xml 的名称提供内容。您还应该将其放在 robots.txt 文件中

Actually i just done it recently using LinqToXMl

How to generate xsi:schemalocation attribute correctly when generating a dynamic sitemap.xml with LINQ to XML?

Actually the string that is returned by that code is written directly to the Response object. I use a .ashx HttpHandler to deliver the content as XML and using Routing to serve it under the name of sitemap.xml. Also you should put it on your robots.txt file

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