码迷,mamicode.com
首页 > 数据库 > 详细

解析ASP,NET MVC 中 web.config XML文件 取出数据库类型

时间:2016-07-13 20:32:42      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:

         /// <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
        }

  

解析ASP,NET MVC 中 web.config XML文件 取出数据库类型

标签:

原文地址:http://www.cnblogs.com/zemax/p/5667680.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!