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);
}
Au lieu de charger le XML à partir d'un fichier, comment puis-je le charger à partir d'une chaîne?
XmlDocument
classe . Vous le comprendrez vous-même très rapidement.LoadXml()
- msdn.microsoft.com/en-us/library/…Réponses:
XmlDocument doc = new XmlDocument(); doc.LoadXml(str);
Où
str
est votre chaîne XML. Consultez l' article MSDN pour plus d'informations.la source
LoadXml()
fait plus que simplement définirInnerXml
. referencesource.microsoft.com/#System.Xml/System/Xml/Dom/…