| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Web;
- namespace CallCenterApi.Common
- {
- public class Configs
- {
- //public static System.Xml.XmlDocument xDoc;
- //public static System.Xml.XmlNode xNode;
- //static Configs()
- //{
- // xDoc = new System.Xml.XmlDocument();
- // xDoc.Load(HttpContext.Current.Server.MapPath("~/Configs/system.config"));
- // xNode = xDoc.SelectSingleNode("//appSettings");
- //}
- /// <summary>
- /// 根据Key取Value值
- /// </summary>
- /// <param name="key"></param>
- public static string GetValue(string key)
- {
- System.Xml.XmlDocument xDoc = new System.Xml.XmlDocument();
- xDoc.Load(HttpContext.Current.Server.MapPath("~/Configs/system.config"));
- System.Xml.XmlNode xNode = xDoc.SelectSingleNode("//appSettings");
- var xElem1 = (System.Xml.XmlElement)xNode.SelectSingleNode("//add[@key='" + key + "']");
- return xElem1?.GetAttribute("value") ?? "";
- }
- /// <summary>
- /// 根据Key修改Value
- /// </summary>
- /// <param name="key">要修改的Key</param>
- /// <param name="value">要修改为的值</param>
- public static void SetValue(string key, string value)
- {
- System.Xml.XmlDocument xDoc = new System.Xml.XmlDocument();
- xDoc.Load(HttpContext.Current.Server.MapPath("~/Configs/system.config"));
- System.Xml.XmlNode xNode = xDoc.SelectSingleNode("//appSettings");
- //System.Xml.XmlNode xNode;
- System.Xml.XmlElement xElem1;
- System.Xml.XmlElement xElem2;
- xElem1 = (System.Xml.XmlElement)xNode.SelectSingleNode("//add[@key='" + key + "']");
- if (xElem1 != null) xElem1.SetAttribute("value", value);
- else
- {
- xElem2 = xDoc.CreateElement("add");
- xElem2.SetAttribute("key", key);
- xElem2.SetAttribute("value", value);
- xNode.AppendChild(xElem2);
- }
- xDoc.Save(HttpContext.Current.Server.MapPath("~/Configs/system.config"));
- }
- }
- }
|