时间:2021-05-28
本文主要给大家介绍了关于ASP.NET中Config读写示例的相关内容,分享出来供大家参考学习,话不多说,来一起看看详细的介绍吧。
方法如下:
如果是WinForm程序,需要添加引用:
App.config
<?xml version="1.0" encoding="utf-8" ?><configuration> <appSettings> <add key="testkey" value="0"></add> </appSettings></configuration>NetUtilityLib
using System.Configuration;namespace pcauto{ public static class ConfigHelper { ///<summary> ///返回*.exe.config文件中appSettings配置节的value项 ///</summary> ///<param name="strKey"></param> ///<returns></returns> public static string GetAppConfig(string strKey) { string file = System.Windows.Forms.Application.ExecutablePath; Configuration config = ConfigurationManager.OpenExeConfiguration(file); foreach (string key in config.AppSettings.Settings.AllKeys) { if (key == strKey) { return config.AppSettings.Settings[strKey].Value.ToString(); } } return null; } ///<summary> ///在*.exe.config文件中appSettings配置节增加一对键值对 ///</summary> ///<param name="newKey"></param> ///<param name="newValue"></param> public static void UpdateAppConfig(string newKey, string newValue) { string file = System.Windows.Forms.Application.ExecutablePath; Configuration config = ConfigurationManager.OpenExeConfiguration(file); bool exist = false; foreach (string key in config.AppSettings.Settings.AllKeys) { if (key == newKey) { exist = true; } } if (exist) { config.AppSettings.Settings.Remove(newKey); } config.AppSettings.Settings.Add(newKey, newValue); config.Save(ConfigurationSaveMode.Modified); ConfigurationManager.RefreshSection("appSettings"); } }}读示例
ConfigHelper.GetAppConfig("testkey")写示例
ConfigHelper.UpdateAppConfig("testkey", "abc");总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对的支持
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
在asp.net中,如何上传大文件呢?我们需要配置Web.config文件.具体如下: 在web.config中的内加入如下代码: 解释: h
asp.net程序开发,用户根据角色访问对应页面以及功能。项目结构如下图:根目录Web.config代码:admin文件夹中Web.config代码:teach
本文介绍两种ASP.Net项目中全局变量使用的方式。web.config文件和Gloab文件。以下分别说明:方法一:web.config文件——设置:在web.
.net提供的是针对当前机器的配置。---名称:machine.config运行机制:asp.net网站IIS启动的时候会加载配置文件中的配置信息,然后缓存这些
asp.net获取全局变量方法第一种,首先打开visualstudio,新建web项目。其次,在新建的web项目中,打开“web.config”文件,在此文件中