<%
Set fsObj = Server.CreateObject("Scripting.FileSystemObject")
Dim filePath
filePath = Server.MapPath("\FileNameToRead")
Set fObj = fsObj.OpenTextFile(filePath,1)
content = fObj.readall
Response.write content
%>
1. FileSystemObject 생성
2. 파일 경로 지정.
3. 경로에 존재하는 파일 읽어오기
4. 읽어온 파일 오브젝트의 내용을 fObj에 모두 저장.
5. 출력
반응형
'Programming' 카테고리의 다른 글
[Language] 프로그래밍 언어 선택 (0) | 2017.01.02 |
---|---|
[ASP] 05. 오라클 데이터 베이스와 연동하기. (0) | 2016.12.20 |
[ASP] 03. 파일 쓰기 (0) | 2016.12.20 |
[ASP] 02. 조건문 (0) | 2016.12.20 |
[ASP] 01. 반복문 (0) | 2016.12.20 |