• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

ASP.NET生成Google网站地图的代码

asp 搞代码 4年前 (2022-01-03) 26次浏览 已收录 0个评论

生成google网站地图的实现代码,需要的朋友可以参考下。

代码如下:
///

/// 生成google网站地图
///

///
public static boolBuildGoogleSitemap()
{
try
{
string RootDirectory = AppDomain.CurrentDomain.BaseDirectory;
XmlTextWriter Writer = new XmlTextWriter(HttpContext.Current.Server.MapPath(“~/GoogleSitemaps.xml”), Encoding.GetEncoding(“utf-8”));
Writer.Formatting = Formatting.Indented;
Writer.WriteStartDocument();
Writer.WriteStartElement(“urlset”, “http://www.google.com/schemas/sitemap/0.84”);
//遍历扫描网站所有文件
showfiles(RootDirectory, Writer);
Writer.WriteEndElement();
Writer.WriteEndDocument();
Writer.Close();
return true;
}
catch (Exception err)
{
return false;
}
}
//遍历

来源gaodai.ma#com搞#代!码网

扫描网站所有文件
static void showfiles(string dirpath, XmlTextWriter Writer)
{
bool IsRead = true;
string[] NotRead ={ “App_Data”, “Bin”, “fckeditor”, “js”, “MyAdmin”, “PowerChatRoom” };//排除这些文件夹
foreach (string s in NotRead)
{
string dirname = dirpath.Substring(dirpath.LastIndexOf(@”\”) + 1);
if (dirname == s)
{
IsRead = false;
break;
}
}
if (!IsRead)
return;
try
{
DirectoryInfo dir = new DirectoryInfo(dirpath);
foreach (FileInfo f in dir.GetFiles())
{
string path = dir.FullName.Replace(AppDomain.CurrentDomain.BaseDirectory, “”);//文件相对目录
//HttpContext.Current.Response.Write(AppDomain.CurrentDomain.BaseDirectory + “**********” + dir.FullName + “
“);
Writer.WriteStartElement(“url”);
Writer.WriteStartElement(“loc”);
StringBuilder sb = new StringBuilder(“/” + path + “/” + f.Name);
sb.Replace(“//”, “/”).Replace(@”\”, “/”);
Writer.WriteString(ConfigurationManager.AppSettings[“WebSiteUrl”].ToString() + sb.ToString());
Writer.WriteEndElement();
Writer.WriteStartElement(“lastmod”);
Writer.WriteString(string.Format(“{0:yyyy-MM-dd}”, f.LastWriteTime));
Writer.WriteEndElement();
Writer.WriteStartElement(“changefreq”);
Writer.WriteString(“always”);//更新频率:always:经常,hourly:小时,daily:天,weekly:周,monthly:月,yearly:年
Writer.WriteEndElement();
Writer.WriteStartElement(“priority”);
Writer.WriteString(“0.8”);//相对于其他页面的优先权,此值定于0.0 – 1.0之间
Writer.WriteEndElement();
Writer.WriteEndElement();
}
foreach (DirectoryInfo d in dir.GetDirectories())
{
showfiles(d.FullName, Writer);
}
}
catch (Exception) { }
}

以上就是ASP.NET生成Google网站地图的代码的详细内容,更多请关注gaodaima搞代码网其它相关文章!


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:ASP.NET生成Google网站地图的代码
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址