码迷,mamicode.com
首页 > Web开发 > 详细

HttpContext.Current.Server未将对象引用到实例

时间:2018-04-17 22:58:00      阅读:264      评论:0      收藏:0      [点我收藏+]

标签:代码   bin   path   directory   nbsp   load   读取   base   else   

问题描述:

在一些类库中需要读取当前系统的xml文件,当时用HttpContext.Current无法找到实例化对象

解决代码如下:

 

XmlDocument xml = new XmlDocument();
//加载xml文件
try
{
if (HttpContext.Current != null)
{
xml.Load(HttpContext.Current.Server.MapPath("~/Configs/CityAreas.xml"));
}
else
{
xml.Load(System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Configs\\CityAreas.xml"));
}

}
catch (Exception ex)
{
Helper.ComHelper.CityDataLog("CityAreas配置有误,请及时检查!");
}

HttpContext.Current.Server未将对象引用到实例

标签:代码   bin   path   directory   nbsp   load   读取   base   else   

原文地址:https://www.cnblogs.com/pangzili/p/8870516.html

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