怎么在ASP.NET中读写Config文件-创新互联
今天就跟大家聊聊有关怎么在ASP.NET中读写Config文件,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。
让客户满意是我们工作的目标,不断超越客户的期望值来自于我们对这个行业的热爱。我们立志把好的技术通过有效、简单的方式提供给客户,将通过不懈努力成为客户在信息化领域值得信任、有价值的长期合作伙伴,公司提供的服务项目有:域名注册、网页空间、营销软件、网站建设、界首网站维护、网站推广。方法如下:
如果是WinForm程序,需要添加引用:
System.ServiceModel
System.Configuration
App.config
NetUtilityLib
using System.Configuration; namespace pcauto { public static class ConfigHelper { //////返回*.exe.config文件中appSettings配置节的value项 /// /// ///public static string GetAppConfig(string strKey) { string file = System.Windows.Forms.Application.ExecutablePath; Configuration config = ConfigurationManager.OpenExeConfiguration(file); foreach (string key in config.AppSettings.Settings.AllKeys) { if (key == strKey) { return config.AppSettings.Settings[strKey].Value.ToString(); } } return null; } /// ///在*.exe.config文件中appSettings配置节增加一对键值对 /// /// /// public static void UpdateAppConfig(string newKey, string newValue) { string file = System.Windows.Forms.Application.ExecutablePath; Configuration config = ConfigurationManager.OpenExeConfiguration(file); bool exist = false; foreach (string key in config.AppSettings.Settings.AllKeys) { if (key == newKey) { exist = true; } } if (exist) { config.AppSettings.Settings.Remove(newKey); } config.AppSettings.Settings.Add(newKey, newValue); config.Save(ConfigurationSaveMode.Modified); ConfigurationManager.RefreshSection("appSettings"); } } }
读示例
ConfigHelper.GetAppConfig("testkey")
写示例
ConfigHelper.UpdateAppConfig("testkey", "abc");
看完上述内容,你们对怎么在ASP.NET中读写Config文件有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注创新互联行业资讯频道,感谢大家的支持。
网页题目:怎么在ASP.NET中读写Config文件-创新互联
转载来源:http://pwwzsj.com/article/csisoj.html