保存上传文件后,我得到了这个文件的本地网址,如何将其转换为http网址?
答案 0 :(得分:3)
public static string PathMap(string path)
{
string approot = HttpContext.Current.Request.PhysicalApplicationPath.TrimEnd('\\');
return path.Replace(approot, string.Empty).Replace('\\', '/');
}