比如你Web.Config所在的文件夹在E:\webset1\Web.Config
那么你的虚拟路径应该是E:\webset1
IIS6.0里面会把你设置的这个路径文件夹做为根目录,当访问这个站点的时候会调用里面的默认首页Default.aspx(默认情况下)
在类中这样写:当前项目的物理路径嘛:
strPath = this.Server.MapPath(Request.PhysicalApplicationPath)
你要说明什么“类文件”。任何PAGE、CONTROL代码也是在类中的。上面的this只针对Page对象,针对control你应该替换为this.Page。你也可以使用:
strPath = HttpContext.Current.Server.MapPath(HttpContext.Current.Request.PhysicalApplicationPath)
或者,使用:
strPath = AppDomain.CurrentDomain.BaseDirectory
在页面的后台文件中如下:
很经常使用到的一个功能,但在在网上却一直没有找到相关的解决方法,今天借着项目应用到的机会写了两
个将绝对路径转换为虚拟路径封装好的方法
将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
if (!Path.IsPathRooted(specifiedPath) || specifiedPath.IndexOf(pathRooted) == -1)
{
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, "")
}
string relativePath = specifiedPath.Replace("\\", "/")
string[] pageNodes = pageVirtualPath.Split('/')
// 减去最后一个页面和前面一个 "" 值
int pageNodesCount = pageNodes.Length - 2
for (int i = 0i <pageNodesCounti++)
{
relativePath = "/.." + relativePath
}
if (pageNodesCount >0)
{
// 如果存在 ".." , 则把最前面的 "/" 去掉
relativePath = relativePath.Substring(1, relativePath.Length - 1)
}
return relativePath
}
第二个方法显然是从第一个方法中的前部分抽取出来的,所以懒得去添加相关注释 :P
将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
string pathRooted = HostingEnvironment.MapPath(virtualPath)
if (!Path.IsPathRooted(specifiedPath) || specifiedPath.IndexOf(pathRooted) == -1)
{
return specifiedPath
}
if (pathRooted.Substring(pathRooted.Length - 1, 1) == "\\")
{
specifiedPath = specifiedPath.Replace(pathRooted, "~/")
}
else
{
specifiedPath = specifiedPath.Replace(pathRooted, "~")
}
string relativePath = specifiedPath.Replace("\\", "/")
return relativePath
}
将虚拟路径转绝对路就没什么好说的了, HttpRequest.MapPath 方法专门干这事
7月4日 13:27 1.什么是绝对路径绝对路径就是你的主页上的文件或目录在硬盘上真正的路径,绝对路径一般在CGI程序的路径配置中经常用到,而在制作网页中实际很少用到。大家不用管它。
2.什么是相对路径
顾名思义,相对路径就是相对于当前文件的路径。网页中一般表示路径使用这个方法。
比如一个文件的路径是http://xxxxx.home4u.china.com/feel/mine/dark.html,表示dark.html文件是在mine目录中的。那么这个页面中如果有个连接是指向网站首页index.html的,这个连接就应该这样表示:../../index.html。 ../ 表示上一级目录,第一个../表示回到feel目录,再一个../就表示回到了http://xxxxx.home4u.china.com/也就是根目录。如果这个dark.html文件中还有一个图片yyy.gif,是在mine目录中的images目录下,那么,可以看到,dark.html文件与images目录是同级的,也就是在同一个目录mine下。那么,这个图片的连接地址就应该是:images/yyy.gif。images前面没有任何字符,表示就在同一个目录下。
还有一个方法可以让你不用考虑回到哪个目录,那就是根目录表示法。以“/”这个斜杠标记来表示根目录,其他文件就以这个为参照。比如,上例中连接index.html的连接就可以写成:/index.html。图片连接就可以写成:/feel/mine/images/yyy.gif。
实际上,网站路径结构就是你硬盘上某个目录下的路径结构。象上面图片的连接,就好比你在本地打开这个图片时进入目录的顺序,先进入feel目录,再进入mine和images目录,然后就找到了yyy.gif。明白了这一点,相信你已经懂得了什么是相对路径。
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)