在c#.asp中如何获取文件的绝对路径??
Server.MapPath(@"..\UploadImage\NoPassPhoto")//NoPassPhoto是E盘下的文件夹,怎么可以得到绝对路径?
Server.MapPath(@"..\" + strPath);//strPath是某文件的相对路径,我想得到它的绝对路径,该 怎么获得?Server.MapPath取不到,有其他方法吗?
------解决方案--------------------取绝对路径就是用Server.MapPath
Server.MapPath("../"+strPath)
------解决方案--------------------你说的不是不想用多层。。你用这个试试,我不知道是否支持
server.MapPath("~/"+strPath)
------解决方案--------------------楼上的说的不行的话 俺也不知道了