본문 바로가기
Web Program/Asp Lecture

현재 페이지의 경로 가져오기

by 현이빈이 2008. 9. 8.
반응형

현재 접속 페이지의 경로 부분만 잘라오기


strPathInfo = Request.ServerVariables("PATH_INFO")
mypos = InstrRev(strPathInfo, "/", -1, 1)
strIndex = mid(strPathInfo, 1, mypos)

response.write strPathInfo & "<BR>"
response.write mypos & "<BR>"
response.write  strIndex & "<BR>"

반응형