想用CYQ.Data 操作XML创建一个xml文件,并且写入一个节点,我这样写哪里出错了?
XHtmlAction xml = new XHtmlAction();
xml.Load("<xml></xml>");
xml.CreateNode("a", "helloworld");
xml.Save(Server.MapPath("~/1.xml"));
运行后目录下没有产生1.XML文件
using (XHtmlAction action = new XHtmlAction())
{
action.LoadXml("<xml id=\"root\"></xml>");
action.CreateNodeTo(action.Get("root"), "a", "hello world!");
action.Save(AppConfig.RunPath+"1.xml");
}
谢谢秋大回答,完美解决了我的问题!