坐在海边看星星

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
         /// <summary>
        /// 解析web.config   查询dbType类型
       /// </summary>
 
        private static void SetDBType()
        {
            #region 解析web.config   查询dbType类型
            string strPath = HttpContext.Current.Server.MapPath("/") + "Web.config";
            XmlDocument doc = new XmlDocument();
            doc.Load(strPath);
            string dbType = "";
            XmlNodeList nodeList = doc.SelectNodes(@"configuration/appSettings/add");
            foreach (XmlNode nodeitem in nodeList)
            {
                if (nodeitem.Attributes["key"] != null && nodeitem.Attributes["value"] != null)
                {

                    if (nodeitem.Attributes["key"].Value.ToString() == "DBType")
                    {
                        dbType = nodeitem.Attributes["value"].Value;
                    }
                }
            }

           
            #endregion
        }

  

posted on 2016-07-13 17:25  坐在海边看星星  阅读(228)  评论(0编辑  收藏  举报