【XML】配置文件—webconfig

1,利用ConfigurationManagerWebConfigurationManager操作配置文件。

复制代码
   //打开配置文件 
   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(); }
复制代码

 

   

posted @   行进  阅读(238)  评论(0编辑  收藏  举报
编辑推荐:
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
阅读排行:
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· Ollama——大语言模型本地部署的极速利器
· DeepSeek如何颠覆传统软件测试?测试工程师会被淘汰吗?
点击右上角即可分享
微信分享提示