首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

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

2012-05-22 
mvc,我想访问网站目录下的xml文件 请问如果配置呢我有一个js文件 ,然后访问, /www/目录下的xml 文件 ,Glob

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

热点排行