举例:如果当前的网站目录为E:\wwwroot,应用程序虚拟目录为E:\wwwroot\company,浏览的页面路径为E:\wwwroot\company\news\show.asp在show.asp页面中使用:Server.MapPath("./") 返回路径为:E:\wwwroot\company\newsServer.MapPath("/") 返回路径为:E:\wwwrootServer.MapPath("../") 返回路径为:E:\wwwroot\companyServer.MapPath("~/") 返回路径为:E:\wwwroot\companyServer.MapPath(request.ServerVariables("Path_Info")) 返回路径为:E:\wwwroot\company\news\show.aspRequest.ServerVariables("Path_Translated") 返回路径为:E:\wwwroot\company\news\show.asp