亲宝软件园·资讯

展开

C#根据给出的相对地址获取网站绝对地址 C#实现根据给出的相对地址获取网站绝对地址的方法

feige 人气:0
想了解C#实现根据给出的相对地址获取网站绝对地址的方法的相关内容吗,feige在本文为您仔细讲解C#根据给出的相对地址获取网站绝对地址的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:C#,根据,相对地址,获取,网站,绝对地址,方法,下面大家一起来学习吧。

本文实例讲述了C#实现根据给出的相对地址获取网站绝对地址的方法。分享给大家供大家参考。具体分析如下:

这段C#代码在ASP.NET的项目中可以根据给定的相对地址获取绝对访问地址,例如:给出 /codes/index.php 可以返回//www.qb5200.com/codes/index.php的绝对地址结果。

/// <summary>
/// 根据给出的相对地址获取网站绝对地址
/// </summary>
/// <param name="localPath">相对地址</param>
/// <returns>绝对地址</returns>
public static string GetWebPath(string localPath)
{
  string path = HttpContext.Current.Request.ApplicationPath;
  string thisPath;
  string thisLocalPath;
  //如果不是根目录就加上"/" 根目录自己会加"/"
  if (path != "/")
  {
 thisPath = path + "/";
  }
  else
  {
 thisPath = path;
  }
  if (localPath.StartsWith("~/"))
  {
 thisLocalPath = localPath.Substring(2);
  }
  else
  {
 return localPath;
  }
  return thisPath + thisLocalPath;
}

希望本文所述对大家的C#程序设计有所帮助。

加载全部内容

相关教程
猜你喜欢
用户评论