向 google 提交站点地图

发布于 2024-12-09 11:22:52 字数 349 浏览 1 评论 0原文

 System.Net.WebRequest reqGoogle = System.Net.WebRequest.Create("http://www.google.com/webmasters/tools/ping?sitemap=" + HttpUtility.UrlEncode("http://www.shree/SiteMap/'" + PortalName + "'/sitemap.xml"));
 reqGoogle.GetResponse();


当 google 未被阻止时,代码工作正常。对于某些区域,我的管理员阻止了 goole。阻止 google 代码后出现错误。如何首先检查网站是否被阻止。请帮忙。

 System.Net.WebRequest reqGoogle = System.Net.WebRequest.Create("http://www.google.com/webmasters/tools/ping?sitemap=" + HttpUtility.UrlEncode("http://www.shree/SiteMap/'" + PortalName + "'/sitemap.xml"));
 reqGoogle.GetResponse();

Code work fine when google is not blocked.For some region my administrator block the goole.After blocking google code gives an error. How to check the site first if it is blocked or not.plz help.

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

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

发布评论

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

评论(1

黑凤梨 2024-12-16 11:22:52

像这样(?):

try
{
  System.Net.WebRequest reqGoogle = System.Net.WebRequest.Create("http://www.google.com/webmasters/tools/ping?sitemap=" + HttpUtility.UrlEncode("http://www.shree/SiteMap/'" + PortalName + "'/sitemap.xml"));
  reqGoogle.GetResponse();
}
catch(WebException ex)
{
  MessageBox.Show("Google is blocked");
}

like this(?):

try
{
  System.Net.WebRequest reqGoogle = System.Net.WebRequest.Create("http://www.google.com/webmasters/tools/ping?sitemap=" + HttpUtility.UrlEncode("http://www.shree/SiteMap/'" + PortalName + "'/sitemap.xml"));
  reqGoogle.GetResponse();
}
catch(WebException ex)
{
  MessageBox.Show("Google is blocked");
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文