Server.MapPath()

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Server.MapPath()相关的知识,希望对你有一定的参考价值。

Server.MapPath()

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

如果当前的网站目录为E:\wwwroot   应用程序虚拟目录为E:\wwwroot\company 浏览的页面路径为E:\wwwroot\company\news\show.asp
在show.asp页面中使用
Server.MapPath("./")   返回路径为:E:\wwwroot\company\news
Server.MapPath("/")    返回路径为:E:\wwwroot
Server.MapPath("../")   返回路径为:E:\wwwroot\company
Server.MapPath("~/")   返回路径为:E:\wwwroot\company
server.MapPath(request.ServerVariables("Path_Info")) 
Request.ServerVariables("Path_Translated")  
上面两种方式返回路径为 D:\wwwroot\company\news\show.asp

以上是关于Server.MapPath()的主要内容,如果未能解决你的问题,请参考以下文章

SERVER.MAPPATH

Server.MapPath是使用

Server.MapPath()

server.mappath(/)代表啥呀

Server.MapPath查询路径那几件事

Server.MapPath()用法