[c#] XmlDocument-문자열에서로드 하시겠습니까?
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);
}
파일에서 xml을로드하는 대신 문자열에서 어떻게로드합니까?
답변
XmlDocument doc = new XmlDocument();
doc.LoadXml(str);
str
XML 문자열은 어디에 있습니까 ? 자세한 내용은 MSDN 문서 를 참조하십시오.