当前位置: 代码迷 >> ASP.NET >> mvc ,小弟我想访问网站目录下的xml文件 请教如果配置呢
  详细解决方案

mvc ,小弟我想访问网站目录下的xml文件 请教如果配置呢

热度:4050   发布时间:2013-02-25 00:00:00.0
mvc ,我想访问网站目录下的xml文件 请问如果配置呢
我有一个js文件 ,然后访问, /www/目录下的xml 文件 ,Global.asax的路邮怎么配置呢

------解决方案--------------------------------------------------------
Server.MapPath?
------解决方案--------------------------------------------------------
C# code
/// <summary>        /// 应用程序虚拟根目录路径        /// </summary>        public static String AppBasePath        {            get            {                if (HttpContext.Current.Request.ApplicationPath == "/")                    return "";                return HttpContext.Current.Request.ApplicationPath;            }        }        /// <summary>        /// 应用程序物理路径        /// </summary>        public static String PhysicalApplicationPath        {            get {                return HttpContext.Current.Request.PhysicalApplicationPath;            }        }
  相关解决方案