Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 앞으로 가기
- ssmtp
- set foreign_key
- 쁘띠프랑스
- 날짜계산
- 뒤로 가기
- openfire
- rsync
- 중독 게임
- 훼인
- php
- 워드프레스한글팩
- 태권v
- 이미지주소추출
- 특정 패키지 업데이트 중지 / 해제
- node.js
- mongodb
- 재귀쿼리
- quota
- 태권브이
- MySQL
- strtotime
- xcache
- node 이미지 저장
- no key alg
- php-fpm
- 외래키
- simplexml_load_filesimplexml
- security.limit_extensions
- 리플리케이션 오류
Archives
- Today
- Total
일상 기록 창고
이미지 경로 숨기기.. 본문
<%
Dim file, binFile, oStream
file = Request("file")
file = Server.MapPath(".\") & "\upload\" &
file
' 경로를 맞게 수정
file = Replace(file, "KTF_Downshop",
"KTF_Downshop\Admin")
Set oStream =
CreateObject("ADODB.Stream")
oStream.Type =
1
oStream.open
oStream.LoadFromFile file
binFile =
oStream.Read
oStream.Close
Set oStream = Nothing
Response.BinaryWrite binFile
%>
'프로그래밍 > ASP' 카테고리의 다른 글
ms-sql 함수 모음 (0) | 2006.12.29 |
---|---|
달력 ... (0) | 2006.11.06 |
메인 페이지에 리스트 뿌려주는 함수 (0) | 2006.05.02 |
요일 함수 (0) | 2006.05.02 |
폼 값 확인하기 (0) | 2006.04.27 |