摘要: using System;using System.Collections.Generic;using System.Text;using System.Xml;namespace XMLTest{ public class CommXml { public XmlDocument xmlDoc = new XmlDocument(); public void getXmlDoc(string strXml) { xmlDoc.LoadXml(strXml); } public CommXml(string strXml) { xmlDoc.LoadXml(strXml); } /// su 阅读全文
posted @ 2009-04-23 11:31 ljlxyf 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 原因:System.Xml.XmlException: “”(十六进制值 0x03)是无效的字符。 行 4,位置 24。 在 System.Xml.XmlTextReaderImpl.Throw(Exception e) 在 解决方法最近碰到一个问题,我的一个把数据库中记录的信息暴露出来的Web Service调用时候出问题了。报下面的错误信息:System.InvalidOperationException was unhandled Message="XML 文档(1, 823)中有错误。" Source="System.Xml" Message="“”(十六进制值 0x0E)是无效的字 阅读全文
posted @ 2009-04-23 09:55 ljlxyf 阅读(305) 评论(0) 推荐(0) 编辑