这段C#代码在ASP.NET的项目中可以按照给定的相对地点获取绝对访谒地点,,例如:给出 /codes/index.php 可以返回的绝对地点功效。
/// <summary> /// 按照给出的相对地点获取网站绝对地点 /// </summary> /// <param>相对地点</param> /// <returns>绝对地点</returns> public static string GetWebPath(string localPath) { string path = HttpContext.Current.Request.ApplicationPath; string thisPath; string thisLocalPath; //如果不是根目录就加上"http://www.mamicode.com/" 根目录本身会加"http://www.mamicode.com/" if (path != "http://www.mamicode.com/") { thisPath = path + "http://www.mamicode.com/"; } else { thisPath = path; } if (localPath.StartsWith("~/")) { thisLocalPath = localPath.Substring(2); } else { return localPath; } return thisPath + thisLocalPath; }