引言:
为了使代码更加灵活,维护中不轻易动代码,配置文件必不可少。下面就我在项目中写的读取配置文件信息分享给大家。
读取数据库内容:
配置文件中内容:
<connectionStrings>
<add name="Connection String" connectionString="server=.;database=ITSM0709;uid=sa;pwd=1;"
providerName="System.Data.SqlClient" />
</connectionStrings>
后台读取:
string connStr = ConfigurationManager.ConnectionStrings["Connection String"].ConnectionString;
读取一般文件内容:
配置文件中内容:
<appSettings>
<!--钥匙借用管理模块登录权限-我的服务中钥匙管理按钮是否可见-->
<add key="KeyButtonPermisson" value="0710,0240"/>
<!--添加钥匙借用信息模块中下拉框中的属性赋值-->
<add key="DropdownlistElements" value="潘阿召;张蒙"/>
</appSettings>
后台读取:
string permissions = ConfigurationManager.ConnectionStrings["KeyButtonPermisson"].ConnectionString;
string elements = ConfigurationManager.ConnectionStrings["DropdownlistElements"].ConnectionString;
引用:
using System.Configuration
未完待续:
这是我在项目中用到的C#读取配置文件信息的经验分享,有好奇心的亲们都可能还会有疑问,读取一般配置文件时,读取过来的东西往哪用呢?本人明确告诉你,这里面也包含了一定的技术点。不妨再下篇博客分享给大家,敬请期待。