./当前目录
/网站主目录
../上层目录
~/网站虚拟目录
如果当前的网站目录为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() 解析
最新推荐文章于 2020-08-21 19:41:24 发布