string xmlPath = Server.MapPath("1.xml");XmlDocument xmlDoc = new XmlDocument();xmlDoc.LoadXml(xmlPath); 访问出错。 由于1.xml为标准xml改用 xmlDoc.Load(xmlPath); ok!