관리 메뉴

웹개발자의 기지개

현재 파일명 구하기 Request.ServerVariables("SCRIPT_NAME") Request.Servervariables("PATH_INFO") 본문

ASP

현재 파일명 구하기 Request.ServerVariables("SCRIPT_NAME") Request.Servervariables("PATH_INFO")

http://portfolio.wonpaper.net 2019. 12. 11. 02:38

현재 파일명 구할때 Request.ServerVariables("SCRIPT_NAME") 를 이용하여 해당 파일만 뽑아 내보도록 하자.

1
2
3
4
<%
script_name = Request.ServerVariables("SCRIPT_NAME")
script_nameArr = Split(script_name,"/")  ' /front/products/o_lcd_main2.asp
%>
cs

 

thisPageStr 은 o_lcd_main2.asp 값이다.

 

1
2
3
4
<%
thisFileStr = request.servervariables("PATH_INFO")
thisFileArr = Split(thisFileStr,"/")
%>
cs

 

/html/product/galileo.asp


현재파일명은 thisFileArr(3)

Comments