当前位置:编程学习 > C#/ASP.NET >>

XmlDocument的LoadXml的问题~~~~~~~~~

WebClient client = new WebClient();
            client.Encoding = System.Text.Encoding.UTF8;
  string strXml = client.DownloadString("http://127.0.0.1:555/updateservice.xml");

 

            XmlDocument document = new XmlDocument();
            document.LoadXml(strXml );


为什么这样读就老说

级别上的数据无效,行1,位置1呢?

而我调试时把strXml里的值复制为string然后给LoadXml读就可以?

郁闷了半天了,为什么会这样呢

XML的数据是正常的。。。。 --------------------编程问答-------------------- document.Load(strXml );
试试。 --------------------编程问答-------------------- 解决哈哈 --------------------编程问答-------------------- 会有错吗?
我对本页测试无误:

WebClient client = new WebClient();
client.Encoding = System.Text.Encoding.UTF8;
string strXml = client.DownloadString("http://community.csdn.net/Expert/topic/5700/5700857.xml?temp=.6944696");



XmlDocument document = new XmlDocument();
document.LoadXml(strXml); --------------------编程问答-------------------- 解决了吧?什么问题?
补充:.NET技术 ,  C#
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,