protected void Page_Load(object sender, EventArgs e) { XmlDocument doc = new XmlDocument(); try { string path = Server.MapPath("."); doc.Load(path+"whatever.xml"); } catch (Exception ex) { lblError.Text = ex.ToString(); return; }
Instead of loading xml from a file, how to load it from a string?
001 Feb 08 2018-11-11T00: 00Z
source share