server.mappath是啥?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了server.mappath是啥?相关的知识,希望对你有一定的参考价值。
server.mappath是什么?JSP中的!
server.mappath是将相对或虚拟路径映射为物理路径 参考技术A 应该和asp中的Server.MapPath是一个东东吧 参考技术B server.mappath 是文件在服务器上使用是将相对路径映射为服务器绝对路径的server对像的方法!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.Ma