A
A.M
Hi,
I can serialise an XML file into an object using this code:
string strXmlPath = Server.MapPath ("/Thumb/Config.xml");
XmlSerializer serializer = new XmlSerializer(typeof(Config));
TextReader reader = new StreamReader(strXmlPath);
Config config = (Config)serializer.Deserialize(reader);
reader.Close();
It works fine, but it doesn't validate the XML file. How can I modify above
code to validate XML data file through an XSD file?
Thanks,
Alan
I can serialise an XML file into an object using this code:
string strXmlPath = Server.MapPath ("/Thumb/Config.xml");
XmlSerializer serializer = new XmlSerializer(typeof(Config));
TextReader reader = new StreamReader(strXmlPath);
Config config = (Config)serializer.Deserialize(reader);
reader.Close();
It works fine, but it doesn't validate the XML file. How can I modify above
code to validate XML data file through an XSD file?
Thanks,
Alan