欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2023-12-12 15:14:16
本文实例讲述了c#实现根据给出的相对地址获取网站绝对地址的方法。分享给大家供大家参考。具体分析如下: 这段c#代码在asp.net的项目中可以根据给定的相对地址获取绝对访...

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

这段c#代码在asp.net的项目中可以根据给定的相对地址获取绝对访问地址,例如:给出 /codes/index.php 可以返回//www.jb51.net/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#程序设计有所帮助。

上一篇:

下一篇: