server.mappath – 青春部落,流年似水 http://www.youthtribe.com 青春是一场远行,总记不起来时的路。 Mon, 25 Aug 2014 07:40:16 +0000 zh-CN hourly 1 https://wordpress.org/?v=6.1.6 server.mappath – 青春部落,流年似水 http://www.youthtribe.com/archives/1319 http://www.youthtribe.com/archives/1319#respond Mon, 25 Aug 2014 07:40:16 +0000 http://www.youthtribe.com/?p=1319 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

]]>
http://www.youthtribe.com/archives/1319/feed 0