很经常使用到的一个功能,但在在网上却一直没有找到相关的解决方法,今天借着项目应用到的机会写了两个将绝对路径转换为虚拟路径封装好的方法 if (!Path.IsPathRooted(specifiedPath) || specifiedPath.IndexOf(pathRooted) == -1) // 转换成相对路径 string relativePath = specifiedPath.Replace(“\\”, “/”); string[] pageNodes = pageVirtualPath.Split(/); // 减去最后一个页面和前面一个 “” 值 for (int i = 0; i < pageNodesCount; i++) if (pageNodesCount > 0) return relativePath; 第二个方法显然是从第一个方法中的前部分抽取出来的,所以懒得去添加相关注释 😛 string pathRooted = HostingEnvironment.MapPath(virtualPath); if (!Path.IsPathRooted(specifiedPath) || specifiedPath.IndexOf(pathRooted) == -1) if (pathRooted.Substring(pathRooted.Length – 1, 1) == “\\”) string relativePath = specifiedPath.Replace(“\\”, “/”); 将虚拟路径转绝对路就没什么好说的了, HttpRequest.MapPath 方法专门干这事
将Web站点下的绝对路径转换为相对于指定页面的虚拟路径
/**//// <summary>
/// 将Web站点下的绝对路径转换为相对于指定页面的虚拟路径
/// </summary>
/// <param name=”page”>当前页面指针,一般为this</param>
/// <param name=”specifiedPath”>绝对路径</param>
/// <returns>虚拟路径, 型如: ../../</returns>
public static string ConvertSpecifiedPathToRelativePathForPage(Page page, string specifiedPath)
{
// 根目录虚拟路径
string virtualPath = page.Request.ApplicationPath;
// 根目录绝对路径
string pathRooted = HostingEnvironment.MapPath(virtualPath);
// 页面虚拟路径
string pageVirtualPath = page.Request.Path;
{
throw new Exception(string.Format(“\”{0}\”是虚拟路径而不是绝对路径!”, specifiedPath));
}
//(测试发现,pathRooted 在 VS2005 自带的服务器跟在IIS下根目录或者虚拟目录运行似乎不一样,
// 有此地方后面会加”\”, 有些则不会, 为保险起见判断一下)
if (pathRooted.Substring(pathRooted.Length – 1, 1) == “\\”)
{
specifiedPath = specifiedPath.Replace(pathRooted, “/”);
}
else
{
specifiedPath = specifiedPath.Replace(pathRooted, “”);
}
int pageNodesCount = pageNodes.Length – 2;
{
relativePath = “/..” + relativePath;
}
{
// 如果存在 “..” , 则把最前面的 “/” 去掉
relativePath = relativePath.Substring(1, relativePath.Length – 1);
}
}
将Web站点下的绝对路径转换为虚拟路径
/**//// <summary>
/// 将Web站点下的绝对路径转换为虚拟路径
/// 注:非Web站点下的则不转换
/// </summary>
/// <param name=”page”>当前页面指针,一般为this</param>
/// <param name=”specifiedPath”>绝对路径</param>
/// <returns>虚拟路径, 型如: ~/</returns>
public static string ConvertSpecifiedPathToRelativePath(Page page, string specifiedPath)
{
string virtualPath = page.Request.ApplicationPath;
{
return specifiedPath;
}
{
specifiedPath = specifiedPath.Replace(pathRooted, “~/”);
}
else
{
specifiedPath = specifiedPath.Replace(pathRooted, “~”);
}
return relativePath;
}
将web站点下的绝对路径转换为虚拟路径_asp.net技巧
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 将web站点下的绝对路径转换为虚拟路径_asp.net技巧
相关推荐
-      对.net framework 反射的反思_asp.net技巧
-      .net3.5和vs2008中的asp.net ajax_asp.net技巧
-      使用asp.net ajax框架扩展html map控件_asp.net技巧
-      asp.net应用程序资源访问安全模型_asp.net技巧
-      photoshop初学者轻松绘制螺旋漩涡特效_photoshop教程
-      photoshop通道结合图层模式抠狗尾巴草_photoshop教程
-      web.config详解+asp.net优化_asp.net技巧
-      asp.net中多彩下拉框的实现_asp.net技巧