Notice
Recent Posts
Recent Comments
Tags
- javascript 바코드 생성
- ViewData
- django 엑셀불러오기
- javascript redirection
- Mac Oracle
- 맥 오라클설치
- XSS PHP
- jquery 바코드생성
- 파일업로드 체크
- 말줄임표시
- 타임피커
- ASP.Net Core 404
- 파일업로드 유효성체크
- XSS방어
- javascript 바코드스캔
- SSD 복사
- javascript 유효성체크
- ViewBag
- jquery 바코드
- 하드 윈도우 복사
- 바코드 생성하기
- asp.net Select
- TempData
- asp.net dropdownlist
- 바코드 스캔하기
- 하드 마이그레이션
- asp.net core Select
- 강제이동
- php 캐쉬제거
- 404에러페이지
웹개발자의 기지개
[ASP] 현재 파일명 구하기 본문
script_name = Request.ServerVariables("SCRIPT_NAME")
script_nameArr = Split(script_name,"/")
thisPageStr = script_nameArr(3) ' /front/products/o_lcd_main2.asp
thisPageStr 은 o_lcd_main2.asp 값이다.
thisFileStr = request.servervariables("PATH_INFO")
thisFileArr = Split(thisFileStr,"/")
/html/product/galileo.asp
현재파일명은 thisFileArr(3)
'ASP' 카테고리의 다른 글
[ASP] 상단 초기 connection 환경설정 소스 정리 (0) | 2024.01.11 |
---|---|
[ASP] 특정문자가 포함된 문자열 찾기(instr, instrrev) (1) | 2024.01.11 |
[ASP] 구글메일 발송하기 (0) | 2024.01.11 |
[ASP] 유니크한 업로드 파일명 만들기 (0) | 2024.01.11 |
[ASP] 3초후 페이지 지연시키기 (0) | 2024.01.11 |
Comments