zoukankan      html  css  js  c++  java
  • asp.net服务器绝对路径转换成URL相对路径

    //本地路径转换成URL相对路径
    private string urlconvertor(string imagesurl1)
    {
        
    string tmpRootDir = Server.MapPath(System.Web.HttpContext.Current.Request.ApplicationPath.ToString());//获取程序根目录
        string imagesurl2 = imagesurl1.Replace(tmpRootDir, ""); //转换成相对路径
        imagesurl2 = imagesurl2.Replace(@"\"@"/");
        
    return imagesurl2;
    }

    //相对路径转换成服务器本地物理路径
    private string urlconvertorlocal(string imagesurl1)
    {
        
    string tmpRootDir = Server.MapPath

        (System.Web.HttpContext.Current.Request.ApplicationPath.ToString());
    //获取程序根目录
        string imagesurl2 = tmpRootDir + imagesurl1.Replace(@"/"@"\"); //转换成绝对路径
        return imagesurl2;
    }
    //来自 http://hi.baidu.com/hacklzt/blog/item/610ec69498cf4b46d1135ebc.html
  • 相关阅读:
    layer弹出层显示在top顶层
    PC上安装多个操作系统
    Windows下DLL查找顺序
    AHCI驱动安装
    Office 多版本共存
    Windows定时器
    Windows菜单
    Windows高精度时间
    VB6.0调用DLL
    时间服务器通讯协议
  • 原文地址:https://www.cnblogs.com/yannis/p/2128367.html
Copyright © 2011-2022 走看看