给xml|web.config 增加节点和属性值  

string basePathConfig = this.Request.PhysicalApplicationPath.ToString()+"Web.config";
            XmlDocument xmlDoc = new XmlDocument();
            xmlDoc.Load(basePathConfig); //加载你的XML文件
            XmlNode appSettings = xmlDoc.SelectSingleNode("/configuration/appSettings");//查找appSettings
            XmlElement adds=xmlDoc.CreateElement("add");//创建add节点
            adds.SetAttribute("key","test");
            adds.SetAttribute("value","testvalue");
            appSettings.AppendChild(adds);   //追加节点        
            xmlDoc.Save(basePathConfig);//保存文件
            Response.Write("success");成功提示

posted on 2010-03-28 16:50 sanmao 阅读(178) 评论(0)  编辑  收藏

只有注册用户登录后才能发表评论。


网站导航:
 

常用链接

留言簿(5)

随笔分类

随笔档案

搜索

  •  

最新评论

阅读排行榜

评论排行榜