• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    ASP的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方法详解
    • ASP.NET获取各级目录Server.MapPath详解全
    • asp.net Server.MapPath方法注意事项
    • 有关Server.Mappath详细接触
    上一篇:asp中把数据导出为excel的2种方法
    下一篇:ASP中实现执行定时任务的方法
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    ASP的Server.MapPath()不同参数返回路径总结 ASP,的,Server.MapPath,不同,