.net 读取非标准配置文件的小例子
更新时间:2013年07月30日 10:22:01 作者:
这篇文章介绍了.net 读取非标准配置文件的小例子,有需要的朋友可以参考一下
代码如下:
public static string Config(string key)
{
ExeConfigurationFileMap file = new ExeConfigurationFileMap();
file.ExeConfigFilename = @"Providers\\Provider.config";
Configuration config = ConfigurationManager.OpenMappedExeConfiguration(file, ConfigurationUserLevel.None);
AppSettingsSection appsection = (AppSettingsSection)config.GetSection("appSettings");
return appsection.Settings[key].Value;
}
配置文件目录结构:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="ConnectionString" value="Server=(local);Database=DB;User Id=sa;Password=123" />
</appSettings>
</configuration>
调用:
//里面的参数为配置文件的key
string strConn=Config("ConnectionString");
复制代码 代码如下:
public static string Config(string key)
{
ExeConfigurationFileMap file = new ExeConfigurationFileMap();
file.ExeConfigFilename = @"Providers\\Provider.config";
Configuration config = ConfigurationManager.OpenMappedExeConfiguration(file, ConfigurationUserLevel.None);
AppSettingsSection appsection = (AppSettingsSection)config.GetSection("appSettings");
return appsection.Settings[key].Value;
}
配置文件目录结构:
复制代码 代码如下:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="ConnectionString" value="Server=(local);Database=DB;User Id=sa;Password=123" />
</appSettings>
</configuration>
调用:
复制代码 代码如下:
//里面的参数为配置文件的key
string strConn=Config("ConnectionString");
相关文章
asp.net运行提示未将对象引用设置到对象的实例错误解决方法
asp.net运行提示未将对象引用设置到对象的实例错误解决方法,需要的朋友可以参考下2012-03-03Asp.Net如何将多个RadioButton指定在一个组中
将多个RadioButton指定在一个组中,实现其实很简单,一句代码即可,具体如下,希望对大家有所帮助2013-12-12ASP.NET Core 2.0 使用支付宝PC网站支付实现代码
这篇文章主要介绍了ASP.NET Core 2.0 使用支付宝PC网站支付实现代码,需要的朋友可以参考下2017-10-10页面间隔半秒钟更新时间 Asp.net使用Comet开发http长连接示例分享
Comet(Reverse AJAX)主要是通过HTTP长连接, 保持和服务器的连接,实现Server PUSH 和双向通信,下面通过示例学习他的使用方法2014-01-01
最新评论