YongGe

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
开发时,经常要动态的修改config文件,下面的就是一个实用类。

  1using System;
  2using System.Configuration;
  3using System.Reflection;
  4using System.Web;
  5using System.Xml;
  6public enum ConfigFileType
  7{
  8    WebConfig,
  9    AppConfig
 10}

 11
 12namespace WebApplication1
 13{
 14    /// <summary>
 15    /// Summary description for ReadWriteConfig.
 16    /// </summary>

 17    public class ReadWriteConfig
 18    {        
 19        public string docName = String.Empty; 
 20        private XmlNode node=null;    
 21        private int _configType;  
 22        public int ConfigType
 23        {
 24            getreturn _configType; }
 25            set{ _configType=value; }
 26        }
  
 27
 28        SetValue
 66
 67        saveConfigDoc
 86
 87        removeElement
111
112        modifyElement
136
137        loadConfigDoc
154    }

155}

156
posted on 2008-06-09 15:24  YongGe  阅读(551)  评论(0编辑  收藏  举报