主题:  我笨死了,请大侠救我

dreamexpress_5d

职务:普通成员
等级:1
金币:10.0
发贴:2229
#12004/7/8 9:45:53
request.serverVariables("Path_info")能取得当前ASP文件的完整路径。

如/myasp/temp/A.asp

现在我想要得到其所在目录,即/myasp/temp/

怎么办啊??

我真是够笨的,但笨是无罪的,只好请大侠们快邦我一下,小弟在此谢过各位啦~ :mad:



浮尘

职务:普通成员
等级:3
金币:7.0
发贴:1258
#22004/7/8 10:32:26
告诉你一个笨着:从右侧搜索“/”的位置,然后截取request.serverVariables("Path_info")到相应位置。
<%
Dim myPath
myPath=Request.ServerVariables("Path_Info")
myPath=Left(myPath,InstrRev(myPath,"/"))
Response.Write myPath
%>



dreamexpress_5d

职务:普通成员
等级:1
金币:10.0
发贴:2229
#32004/7/8 11:58:24
这一点也不笨啊,聪明的不得了。佩服啊。

看来我对VB的字符串处理函数还了解不多,得恶补一下才成。

谢谢diffmaker