//查询AppSettings的key
        public static List sql()
        {
            List list = new List();
            int Lh = ConfigurationManager.AppSettings.AllKeys.Length;
            for (int i = 0; i < Lh; i++)
            {
                list.Add(ConfigurationManager.AppSettings.AllKeys.GetValue(i).ToString());
            }
            return list;
        }

//查询值AppSettings的值
        public static string SValue(string key)
        {
            return ConfigurationManager.AppSettings[key].ToString();
        }

//添加AppSettings,key ,值
        public static int insert(string key, string Sver)
        {
            int i = 0;
            try
            {
                Configuration conn = WebConfigurationManager.OpenWebConfiguration("~");
                AppSettingsSection app = conn.AppSettings;
                app.Settings.Add(key, Sver);
                conn.Save(ConfigurationSaveMode.Minimal);
                return i;
            }
            catch
            {
                return i = 1;
            }
        }

//修改AppSettings,key ,值
        public static int update(string key, string Sver)
        {
             int e = 0;
             try
             {
                 Configuration conn = WebConfigurationManager.OpenWebConfiguration("~");
                 AppSettingsSection app = conn.AppSettings;
                 app.Settings[key].Value = Sver;
                 conn.Save(ConfigurationSaveMode.Minimal);
                 return e;
             }
             catch
             {
                 return e = 1;
             }
        }

//删除AppSettings,key ,值
        public static int delete(string key)
        {
              int s = 0;
              try
              {
                  Configuration conn = WebConfigurationManager.OpenWebConfiguration("~");
                  AppSettingsSection app = conn.AppSettings;
                  app.Settings.Remove(key);
                  conn.Save(ConfigurationSaveMode.Minimal);
                  return s;
              }
              catch
              {
                  return s = 1;
              }
        }

操作AppConfig.xml中AppSettings对应值字符串的更多相关文章

  1. 3.Python自我修炼(升仙中....整数,布尔值,字符串,for循环)

    python学习(整数,布尔值,字符串,for循环) 1.整数 ​ 在python3中所有的整数都是int类型. 但在python2中如果数据量比较大. 会使用long类型.但是在python3中不存 ...

  2. 在Asp.Net MVC 中如何用JS访问Web.Config中appSettings的值

    应用场景: 很多时候我们要在Web.Config中添加appSettings的键值对来标识一些全局的信息,比如:调用service的domain,跳转其他网站页面的url 等等: 那么此时就涉及到了一 ...

  3. 读取properties和xml中配置文件的值

    五种方式让你在java中读取properties文件内容不再是难题 在java中读取properties和xml文件中的方法:https://www.cnblogs.com/ConfidentLiu/ ...

  4. myBatis批量查询操作,xml中使用foreach案例

    使用场景:有一个订单表,实体类为OrderBase.java,订单有个状态为status值可能为"1,2,3,4,5,6",现在需要查询状态为"2,3,4"的订 ...

  5. 得到Xml中 元素的值

    <?xml version="1.0" encoding="utf-8" ?><Response service="RouteSer ...

  6. Web.config中appSettings节点值两种读取方法

        <appSettings>    <add key="ClientPort" value="5252"/>   <add ...

  7. 【我的Android进阶之旅】Android Studio如何轻松整理字符串到string.xml中

    使用Android Studio一段时间了,还有很多小技巧没有掌握.比如:平常将字符串整理到string.xml中,都是手动的去复制字符串到string.xml中,然后再回来修改引用该字符串的代码,这 ...

  8. 在springboot项目中获取pom.xml中的信息

    最近做了一个新项目,用到了springboot.在搭建框架的过程中,需要读取pom.xml中version的值,本来想着是用自己用java解析xml来着.没想到maven提供了这么一个包,可以直接获取 ...

  9. 如何在logback.xml中自定义动态属性

    当使用logback来记录Web应用的日志时,我们通过在logback.xml中配置appender来指定日志输出格式及输出文件路径,这在一台主机或一个文件系统上部署单个实例没有问题,但是如果部署多个 ...

随机推荐

  1. 关于typedef的使用方法

    在计算机编程语言中用来为复杂的声明定义简单的别名.与宏定义有些差异.它本身是一种存储类的keyword,与auto.extern.mutable.static.register等keyword不能出如 ...

  2. asp.net MVC 自动下载apk

    在Asp.net MVC中直接把.apk文件放入/Upload/App/ 路径下,然后通过IIS发布完之后,再通过http://xxx/Upload/App/xx.apk访问是访问不到的,因此不能下载 ...

  3. RestTemplate 使用总结

    场景: 认证服务器需要有个 http client 把前端发来的请求转发到 backend service, 然后把 backend service 的结果再返回给前端,服务器本身只做认证功能. 遇到 ...

  4. cocos2dx 帧动画的两种创建方式

    看了好几天cocos2dx的帧动画,现在才有点眉目,为了高效期间我们一般会用到 精灵帧缓存(CCSpriteFrameCache) 和动画缓存(CCAnimationCache) .大体的操作步骤: ...

  5. iOS 模拟器键盘弹出以及中文输入

    1.虚拟键盘的弹出与收起切换: 快捷键:command+shift+K 2.中文输入: Xcode 菜单项 --> Product --> Scheme --> Edit Schem ...

  6. .NET 相关工具

    加密工具,反DUMP,反调试,反编译,加密代码资源内容,混淆流程,变量.Confuser is a protector/obfuscator for .NET, providing great sec ...

  7. c# double保留2位小数

    / (endIndex - startIndex); interval = Math.Round(interval , );

  8. 【PRML读书笔记-Chapter1-Introduction】1.1 Example:Polynomial Curve Fitting

    书中给出了一个典型的曲线拟合的例子,给定一定量的x以及对应的t值,要你判断新的x对应的t值多少. 任务就是要我们去发现潜在的曲线方程:sin(2πx) 这时就需要概率论的帮忙,对于这种不确定给t赋何值 ...

  9. bash的一些小技巧

    1.从输入读入变量 eg:read -ep "input yes or no: " flag 用e选项表示编辑,可以使用backspace删除 2.数组 a.索引数组 declar ...

  10. Sublime Text 安装sftp插件

    1. 先安装Package Control组件,用于管理插件. 按ctrl+`组合键,输入以下内容后按Enter键 sublime text 2 版本: import urllib2,os;pf='P ...