3초기억력

ASP - 확장자 추출 하기 본문

플밍_ASP

ASP - 확장자 추출 하기

잠수콩 2011. 3. 29. 15:03
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.


<%
   filePath = "/datguri.net/aspExt.asp"
   fileExt = Mid(filePath, InStrRev(filePath, ".") + 1)
   response.Write "파일 확장자는 " & fileExt
%>
Comments