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

获取web路径的几种方式

时间:2014-05-25 20:18:18      阅读:321      评论:0      收藏:0      [点我收藏+]

标签:des   style   class   blog   c   ext   

bubuko.com,布布扣

1、string str1 = Request.ApplicationPath.ToString();           返回路径为:\HolterClientWeb

2、HttpServerUtility.MapPath 方法 解释:返回对应于 Web 服务器上指定的虚拟路径物理文件路径

   string path=Server.MapPath(Request.ApplicationPath + "/UpLoad/ReportFile");

调试后:

bubuko.com,布布扣

string str3= Server.MapPath("./");

       C:\\Users\\Administrator\\Desktop\\HolterClientWeb\\FileHandle\\

string str4= Server.MapPath("../");

      C:\\Users\\Administrator\\Desktop\\HolterClientWeb\\

string str5 = Server.MapPath("~/");

     C:\\Users\\Administrator\\Desktop\\HolterClientWeb\\

附加:

    ./当前目录
     /网站主目录
    ../上层目录
    ~/网站虚拟目录

3、 string exe = HttpContext.Current.Server.MapPath("pdf2swf.exe");

调试后:

bubuko.com,布布扣

4、string str6 = Server.MapPath(Request.ServerVariables["Path_Info"]);

bubuko.com,布布扣

5、string str7 = Request.ServerVariables["Path_Translated"];

bubuko.com,布布扣

 其它参考地址:http://blog.csdn.net/ecdyf1989/article/details/5877648

                     http://www.cnblogs.com/leixiaoling/archive/2012/03/30/2425466.html

获取web路径的几种方式,布布扣,bubuko.com

获取web路径的几种方式

标签:des   style   class   blog   c   ext   

原文地址:http://www.cnblogs.com/vakeynb/p/3751399.html

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