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);
}
Zamiast ładowania XML z pliku, w jaki sposób mogę załadować go z ciągu?
XmlDocument
klasę . Bardzo szybko to zrozumiesz.LoadXml()
- msdn.microsoft.com/en-us/library/…Odpowiedzi:
XmlDocument doc = new XmlDocument(); doc.LoadXml(str);
Gdzie
str
jest twój ciąg XML. Aby uzyskać więcej informacji, zobacz artykuł MSDN .źródło
LoadXml()
robi więcej niż tylko ustawienieInnerXml
. referenceource.microsoft.com/#System.Xml/System/Xml/Dom/…