本地路径转换成URL相对路径

来源:互联网 发布:我是淘宝黑名单买家 编辑:程序博客网 时间:2024/06/04 19:01
//本地路径转换成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(@"\", @"/");            //imagesurl2 = imagesurl2.Replace(@"Aspx_Uc/", @"");            return imagesurl2;        }

0 0
原创粉丝点击