怎么通过Configuration 类编辑配置文件

本文详细介绍如何使用C#代码动态编辑Web.config和App.config文件中的appSettings节点,包括添加、删除和修改键值对的方法。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

代码如下:

        //编辑web.config文件

        //打开配置文件
        Configuration   config   =   System.Web.Configuration.WebConfigurationManager.OpenWebConfiguration( "~ ");
        //获取appsettings节点
        AppSettingsSection   appsection   =   (AppSettingsSection)config.GetSection( "appSettings ");
        //在appsettings节点中添加元素
        appsection.Settings.Add( "addkey1 ",   "key1 's   value ");
        appsection.Settings.Add( "addkey2 ",   "key2 's   value ");
        config.Save();

        //删除节点或属性
        //打开配置文件
        Configuration   config   =   System.Web.Configuration.WebConfigurationManager.OpenWebConfiguration( "~ ");
        //获取appsettings节点
        AppSettingsSection   appsection   =   (AppSettingsSection)config.GetSection( "appSettings ");
        //删除appsettings节点中的元素
        appsection.Settings.Remove( "addkey1 ");
        //修改appsettings节点中的元素
        appsection.Settings[ "addkey2 "].Value   =   "modify   key2 's   value ";
        config.Save();

        ////////////////////////////////////////////////////////////////////////

        //编辑App.config文件

        ExeConfigurationFileMap   file   =   new   ExeConfigurationFileMap();
        file.ExeConfigFilename   =   @ "..\..\test.config ";
        //打开配置文件
        Configuration   myConfig   =   System.Configuration.ConfigurationManager.OpenMappedExeConfiguration(file,   ConfigurationUserLevel.None);
        //获取appsettings节点
        AppSettingsSection   appsection   =   (AppSettingsSection)myConfig.GetSection( "appSettings ");
        //在appsettings节点中添加元素
        appsection.Settings.Add( "addkey1 ",   "key1 's   value ");
        appsection.Settings.Add( "addkey2 ",   "key2 's   value ");
        config.Save();

        //删除节点或属性
        //打开配置文件
        ExeConfigurationFileMap   file   =   new   ExeConfigurationFileMap();
        file.ExeConfigFilename   =   @ "..\..\test.config ";
        //打开配置文件
        Configuration   myConfig   =   System.Configuration.ConfigurationManager.OpenMappedExeConfiguration(file,   ConfigurationUserLevel.None);
        //获取appsettings节点
        AppSettingsSection   appsection   =   (AppSettingsSection)myConfig.GetSection( "appSettings ");
        //删除appsettings节点中的元素
        appsection.Settings.Remove( "addkey1 ");
        //修改appsettings节点中的元素
        appsection.Settings[ "addkey2 "].Value   =   "modify   key2 's   value ";
        myConfig.Save();

转载于:https://www.cnblogs.com/love-summer/archive/2011/11/09/2242244.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值