首页 相关文章 .Net2.0 使用ConfigurationManager读写配置文件

.Net2.0 使用ConfigurationManager读写配置文件

  .net1.1中如果需要灵活的操作和读写配置文件并不是十分方便,一般都会在项目中封装一个配置文件管理类来进行读写操作。而在.net2.0中使用ConfigurationManager 和WebConfigurationManager 类可以很好的管理配置文件,ConfigurationManager类在System.Configuration中,WebConfigurationManager在System.Web.Configuration中。根据MSDN的解释,对于 Web 应用程序配置,建议使用 System.Web.Configuration.WebConfigurationManager 类,而不要使用 System.Configuration.ConfigurationManager 类。

  下面我给出一个简单的例子说明如何使用WebConfigurationManager操作配置文件:
   //打开配置文件
   Configuration config = WebConfigurationManager.OpenWebConfiguration("~");
   //获取appSetti...[ 查看全文 ]

2016-02-19 标签:

.Net2.0 使用ConfigurationManager读写配置文件的相关文章

手机页面
收藏网站 回到头部