码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2016-06-30 14:14:53      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:

为了方便有时我们会把一些简单的配置的信息放入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 值获取、添加、修改实现

标签:

原文地址:http://www.cnblogs.com/caoxilong/p/5629629.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!