Modify Web.config

来源:互联网 发布:max30100中文数据手册 编辑:程序博客网 时间:2024/06/05 05:20

private voidChangeAppSettings(string key,stringNewValue) {    

  Configuration cfg;    

  cfg = System.Web.Configuration.WebConfigurationManager.OpenWebConfiguration("~");     

      KeyValueConfigurationElement setting= (KeyValueConfigurationElement)cfg.AppSettings.Settings(key);      

     if((setting !=null)){       

   setting.Value= NewValue;         

 cfg.Save();    

  } 

 }