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文件读写的示例分析
URL地址:http://csruizhi.cn/article/jdigsp.html

其他资讯

Copyright © 2007-2024 成都优众联杰科技有限公司 All Rights Reserved 蜀ICP备2024116266号
友情链接: 温江网站设计 响应式网站设计方案 手机网站设计 成都网站建设 成都网站建设 成都网站设计制作公司 成都品牌网站建设 网站制作 四川成都网站制作 定制级高端网站建设 企业网站设计 成都企业网站建设公司 重庆企业网站建设 营销型网站建设 成都网站制作 成都网站制作 成都网站设计 高端品牌网站建设 LED网站设计方案 成都网站建设公司 移动手机网站制作 H5网站制作