问题描述
stringXMLstr="";XMLstr+="<?xmlversion="1.0"encoding="utf-8"?>";XMLstr+="<urlsetxmlns='http://www.google.com/schemas/sitemap/0.84'>";foreach(stringstrinstrlist){XMLstr+="<url>";XMLstr+="<loc>";XMLstr+=str;---------------到这里就出错阿,我要怎么把变量加进去阿XMLstr+="</loc>";XMLstr+="<lastmod>";XMLstr+="2008-05-19T20:10:34+00:00";XMLstr+="</lastmod>";XMLstr+="<changefreq>";XMLstr+="always";XMLstr+="</changefreq>";XMLstr+="<priority>";XMLstr+="1.0";XMLstr+="</priority>";XMLstr+="</url>";}XMLstr+="</urlset>";XmlDocumentdoc=newXmlDocument();doc.LoadXml(XMLstr);doc.Save(Server.MapPath("Data.xml"));
解决方案
解决方案二:
好像没错误啊
解决方案三:
stringXMLstr="";====>建议用stringbuilder
解决方案四:
up
时间: 2024-10-03 23:08:20