C# 生成网站地图SiteMap.xml

编程开发 XML网站地图SiteMap

C# 生成网站地图SiteMap.xml

参考百度的SiteMap标准

代码如下:首先创建Url实体

///Url链接实体
public class MapUrl  
{  
       public MapUrl(string loc, string lastmod, string changefreq, string priority)  
       {  
                this.loc = loc;  
                this.lastmod = lastmod;  
                this.changefreq = changefreq;  
                this.priority = priority;  
       }  
       /// <summary>  
       /// 链接地址 例如 http://wwww.yuantk.com  
       /// </summary>  
相关推荐
免责声明 本站部分内容来源于互联网公开资源分享学习交流,若其中有侵犯到了您的权益 还请邮件联系我方删除