我想大家对配置文件一定不会陌生,在大部分的项目中都会用到它,在此笔者给出一些配置文件的实用示例。
利用XML格式的配置文件储存连接字符串,再用反射技术读取。
using System.Reflection;
String str = ConfigurationManager.AppSettings["DemoKey"].Value;
.NET程序系统读取config文件配置是在全计算机范围内,如果有两个config文件中有相同的name但是有不同键值的话,程序在加载配置时就会出现错误
using System.Configuration; string conStr=ConfigurationManager.ConnectionStrings["SqlConStr"]. ConnectionString.ToString();
要将网站.net版本设置为4以上,不然无法配置。
<system.web>
<compilation debug="true" targetFramework="4.0"/>
<httpRuntime requestValidationMode="2.0"/>
</system.web>