Asp.net使用代码修改配置文件的节点值

使用代码修改配置文件的方法:

1、打开配置文件写入的权限

2、先按节点名称长到要修改的节点,然后删除,紧接着将有新值的节点添加回去

3、关闭配置文件写入的权限

修改Appsetting节点的值,修改其它节点的方法也差不多,也是找到要修改的节点删除掉然后新新值的节点加上

        public bool UpdateAppSettings(string key, string value)
        {
            bool reuslt = false;

            try
            {
                Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
                SetFileAccess(config.FilePath + "", false);
                ConfigurationSection sections = config.GetSection("appSettings");
                bool isSet = false;
                for (int i = 0; i < ((System.Configuration.AppSettingsSection)(sections)).Settings.Count; i++)
                {
                    string itemkey = ((System.Configuration.AppSettingsSection)(sections)).Settings.AllKeys[i];
                    if (itemkey == key)
                    {
                        ((System.Configuration.AppSettingsSection)(sections)).Settings.Remove(key);
                        ((System.Configuration.AppSettingsSection)(sections)).Settings.Add(key, value);
                        isSet = true;
                        break;
                    }
                }
                if (!isSet)
                {
                    ((System.Configuration.AppSettingsSection)(sections)).Settings.Add(key, value);
                }

                config.Save();
                ConfigurationManager.RefreshSection("appSettings");

                SetFileAccess(config.FilePath + "", true);
                reuslt = true;
            }
            catch (Exception ex)
            {
                LogNet.Log.WriteLog("UpdateAppSettings", ex);
            }

            return reuslt;
        }

修改配置文件的读写权限

        protected void SetFileAccess(string path, bool isReadOnly)
        {
            FileInfo fi = new FileInfo(path);
            if (fi.IsReadOnly != isReadOnly)
                fi.IsReadOnly = isReadOnly;
        }

时间: 2024-11-09 06:23:36

Asp.net使用代码修改配置文件的节点值的相关文章

ASP.NET MVC 动态修改form的action值

在练习ASP.NET MVC时,为了实现一个小功能,POST数据至服务器执行时,需要动态修改form的action值. 下面Insus.NET列举一个例子来演示它.让它简单,明白易了解. 你可以在控制器中,创建3个操作action: 标记1是实现视图,而标记2与3是为form的action.其中Isus.NET有使用ContentResult来替代Response.Write向视图输出结果. 在视图中,我们在form中,放一个文件框,两个铵钮,但没有在form中,设置action值.稍后我们在铵

修改配置文件haproxy

文件内容 1 global 2 log 127.0.0.1 local2 3 daemon 4 maxconn 256 5 log 127.0.0.1 local2 info 6 defaults 7 log global 8 mode http 9 timeout connect 5000ms 10 timeout client 50000ms 11 timeout server 50000ms 12 option dontlognull 13 14 listen stats :8888 15

[C#]配置文件Section节点处理小计

有时候项目开发中,需用用配置文件来存储一些关于程序配置信息,这时候你可以选择INI或者app.config来存储,这里总结小计一下: 配置文件示例: <?xml version="1.0" encoding="utf-8" ?> <configuration> <configSections> <sectionGroup name="module"> <section name="a

xml 方式更新和获取 配置文件 appSettings 节点 解决办法

最近在搞一个小程序,会用到动态修改配置文件来进行处理,在百度上找了很多办法,但是始终达不到我预想的效果,先列出程序运行环境和开发工具版本: 开发工具:VS2010 .Net 运行环境:4.0 有两种方式,分别如下: 第一种方式:只能在程序运行和调试时有效,在程序打包成安装包并安装之后会出现问题,完整代码如下: /// <summary> /// 设置配置文件key对应的值 /// </summary> /// <param name="key">键&

修改配置文件matplotlibrc,让Matplotlib显示中文

matplotlib默认不支持中文显示,网上的解决办法有好多种,但是大多数都是通过在代码中指定字体,虽然也能实现,但是多出那么几行代码让人觉得很恶心. 本文介绍一种通过修改配置文件matplotlibrc,让Matplotlib显示中文的方法:在win7,Python2.7.9测试通过 第一步:将中文字体复制到matplotlib的字体目录中 中文字体以微软雅黑为例,在 C:\Windows\Fonts 下面找到“微软雅黑”字体.matplotlib默认安装在 %PythonPath%\Lib\

Asp.Net 读取xml文件中Key的值,并且过滤掉注释内容代码

/// <summary> /// 读取配置文件keys /// </summary> /// <returns></returns> public string _GetKeys() { string filename = Server.MapPath("/") + @"web.config"; XmlDocument xmldoc = new XmlDocument(); XmlReaderSettings set

第一个shell脚本——修改配置文件

有需求,可以让自己偷懒才是学习的真正动力.由于测试环境在构建代码之后总是需要手动修改配置文件,因此边学习边完成了一个shell脚本,可以一键修改. 定义了一个函数,输出信息以绿色字体显示. function echo_green { echo -e "\033[32m$1\033[0m" } 输出提示信息 echo_green "是否一键修改xxx?(y/n)" 读取键盘输入 read answer 要修改的配置文件有两类:一类是明确清楚应该修改哪些字符串,直接用替

WCF 寄宿方式 代码,配置文件

可以通过代码或者配置文件寄宿WCF服务,在使用过程中的一些心得,记录一下,方便后续查阅. 预备知识,几个地址的作用 1. behavior.HttpGetUrl  定义元数据的地址,如果不定义基地址,则必须定义HttpGetUrl ,是The absolute or relative location of the metadata. 2.baseAddresses 服务的地址,因为元数据(metadata)是属于一个host的,并不属于一个endpoint.此基地址就是客户端添加服务引用的地址

练习—简单修改配置文件

1.文件 global log 127.0.0.1 local2 daemon maxconn 256 log 127.0.0.1 local2 info defaults log global mode http timeout connect 5000ms timeout client 50000ms timeout server 50000ms option dontlognull listen stats :8888 stats enable stats uri /admin stats