Reputation: 16590
After saved upload file, i got local url of this file, how i convert it to http url?
Upvotes: 2
Views: 3393
Reputation:
public static string PathMap(string path)
{
string approot = HttpContext.Current.Request.PhysicalApplicationPath.TrimEnd('\\');
return path.Replace(approot, string.Empty).Replace('\\', '/');
}
source : http://www.aspapp.com/forums.asp?ForumId=11&TopicId=3536
Upvotes: 4