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;
}
// Convert XML to a JSON string
string JSON = XmlToJSON(doc);
// Replace \ with \\ because string is being decoded twice
JSON = JSON.Replace(@"\", @"\\");
// Insert code to process JSON at end of page
ClientScriptManager cs = Page.ClientScript;
cs.RegisterStartupScript(GetType(), "SpaceJSON", "space_processJSON('" + JSON + "');", true);
}
En lugar de cargar el xml desde un archivo, ¿cómo lo cargo desde una cadena?
XmlDocument
clase . Lo resolverá usted mismo muy rápidamente.LoadXml()
- msdn.microsoft.com/en-us/library/…Respuestas:
XmlDocument doc = new XmlDocument(); doc.LoadXml(str);
¿Dónde
str
está tu cadena XML? Consulte el artículo de MSDN para obtener más información.fuente
LoadXml()
hace más que configurarInnerXml
. referenciasource.microsoft.com/#System.Xml/System/Xml/Dom/…