.Net2.0读取应用程序配置节
作者:Eve Cole
更新时间:2009-06-30 16:09:31
方法一:
加入名称空间:
using System.Configuration;然后
string strDbConn = new AppSettingsReader().GetValue("dbconn", typeof(string)).ToString();方法二:
添加引用:(system.configuration)
加入名称空间
using System.Configuration;string strDbConn = ConfigurationManager.AppSettings["dbconn"];
其实挺简单的,不要骂我,记下来让别人看看:)