1300万条信息费
就是130万的短信费,不知道你有什么钱来发这些短信,你喜欢短信的内容是你的事!但我更关心短信的费哪来?政府预算?还是你私人出?
江南一个小市局长家都是别su,我想你出130W的rmb应该有,应该是以你私人的名义发的!

希望你不要欠企业的钱!
  /// <summary>
        /// 设置app.config中的某个key的value.
        /// </summary>
        /// <param name="AppKey">key</param>
        /// <param name="AppValue">value</param>
        public void SetValue(string AppKey, string AppValue)
        {
            XmlDocument xDoc = new XmlDocument();

            //此处配置文件在程序目录下
            xDoc.Load(Application.StartupPath + "\\PoCollect.exe.config");
            XmlNode xNode;
            XmlElement xElem1;
            XmlElement xElem2;
            xNode = xDoc.SelectSingleNode("//appSettings");
            xElem1 = (XmlElement)xNode.SelectSingleNode("//add[@key='" + AppKey + "']");
            if (xElem1 != null)
            {
                xElem1.SetAttribute("value", AppValue);
            }
            else
            {
                xElem2 = xDoc.CreateElement("add");
                xElem2.SetAttribute("key", AppKey);
                xElem2.SetAttribute("value", AppValue);
                xNode.AppendChild(xElem2);
            }
            xDoc.Save(Application.StartupPath + "\\PoCollect.exe.config");
        }
Pages: 1/1 First page 1 Final page [ View by Articles | List ]