【XML】配置文件—webconfig
1,利用ConfigurationManager和WebConfigurationManager操作配置文件。
//打开配置文件 Configuration config = WebConfigurationManager.OpenWebConfiguration("~"); //获取appSettings节点 AppSettingsSection appSection = (AppSettingsSection)config.GetSection("appSettings"); //在appSettings节点中添加元素 appSection.Settings.Add("addkey1", "key1's value"); //删除appSettings节点中的元素 appSection.Settings.Remove("addkey1"); //修改appSettings节点中的元素 appSection.Settings["addkey2"].Value = "Modify key2's value"; config.Save();
<appSettings> <add key="pagetitle" value="Job Site Starter Kit (Ver.1.0)"></add> <add key="sitelogo" value="logo.gif"></add> <add key="advertiseemail" value="sales@somesite.com"></add> </appSettings> //获取到appSettings节点下所有的add节点的值,已键值对的方式获得 Configuration config = WebConfigurationManager.OpenWebConfiguration(Request.ApplicationPath); AppSettingsSection appSettings = (AppSettingsSection) config.GetSection("appSettings"); string[] appKeys = appSettings.Settings.AllKeys; for (int i = 0; i < appSettings.Settings.Count; i++) { //这里只进行简单的输出 Response.Write(appSettings.Settings[appKeys[i]].Value); Response.Write("<BR>"); } //获得某一个key的值 Configuration config = WebConfigurationManager.OpenWebConfiguration(Request.ApplicationPath); AppSettingsSection appSettings = (AppSettingsSection)config.GetSection("appSettings"); string pateTitle= appSettings.Settings["pagetitle"].Value; //获取key为patetitle的value值 string siteLogo= appSettings.Settings["siteLogo"].Value; //获取key为sitelogo的value值
在ASP.NET2.0里提供了两种方式对数据库连接字符串加密,一种是使用asp_regii命令,一种是通过代码,下面显示的是通过代码方式对数据库连接字符串加密,代码如下:
Configuration config = WebConfigurationManager.OpenWebConfiguration(Request.ApplicationPath); ConfigurationSection configSection = config.GetSection("connectionStrings"); if (configSection.SectionInformation.IsProtected) {
//如果已经加密,就不用再加密了 configSection.SectionInformation.UnprotectSection(); config.Save(); } else { configSection.SectionInformation.ProtectSection ("DataProtectionConfigurationProvider"); config.Save(); }
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· Ollama——大语言模型本地部署的极速利器
· DeepSeek如何颠覆传统软件测试?测试工程师会被淘汰吗?