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

Server.MapPath()

时间:2014-04-30 19:34:51      阅读:400      评论:0      收藏:0      [点我收藏+]

标签:com   c   t   sp   ble   re   new   应用   app   server   path   

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

如果当前的网站目录为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(),码迷,mamicode.com

Server.MapPath()

标签:com   c   t   sp   ble   re   new   应用   app   server   path   

原文地址:http://www.cnblogs.com/milantgh/p/3699014.html

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