mvc webconfig appSettings 值获取添加修改实现

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mvc webconfig appSettings 值获取添加修改实现相关的知识,希望对你有一定的参考价值。

为了方便有时我们会把一些简单的配置的信息放入web.config文件里。

放到appSettings添加key   value等信息。

var config= ConfigurationManager.AppSettings["minAmount"];//获取值
Configuration cfa = WebConfigurationManager.OpenWebConfiguration("~");
cfa.AppSettings.Settings.Add("key", "value");//添加值
cfa.AppSettings.Settings["redRule"].Value = "-1";//修改值
cfa.Save();//保存
//ConfigurationManager.RefreshSection("appSettings"); //强制刷新配置文件

 

                var config=  ConfigurationManager.AppSettings["minAmount"];//获取值
                Configuration cfa = WebConfigurationManager.OpenWebConfiguration("~");
                cfa.AppSettings.Settings.Add("key", "value");//添加值
                cfa.AppSettings.Settings["redRule"].Value = "-1";//修改值
                cfa.Save();//保存
                //ConfigurationManager.RefreshSection("appSettings"); //强制刷新配置文件

 

以上是关于mvc webconfig appSettings 值获取添加修改实现的主要内容,如果未能解决你的问题,请参考以下文章

获取webconfig配置文件内容

MVC 路由调试工具-RouteDebugger

编写webconfig连接串与使用(新)

C#app.config配置文件多组<appSettings>怎么办?

webconfig中配置各种数据库的连接字符串(转)

asp.net mvc