어떻게 텍스트 파일 을 표시 합 니까?

Write(StrING)    WriteLine(StrING)    WriteBlankLines(LINES)     〈html〉    〈head〉    〈http-equiv="Content-Type" content="text/html; charset=gb 2312","title",봄바람 의 멋 진 텍스트 파일 은"/title","/head"를 표시 합 니 다. <%LANGUAGE=VBScript%><%Const ForReading=1,ForWriting=2,ForAppending=3'인 자 를 선택 하여 입 출력 모드 를 결정 합 니 다.① ForReading=1 읽 기;② ForWriting=2 읽 기와 쓰기;③ ForAppending=3 추가.Const TristateUseDefault=-2,TristateTrue=-1,TristateFalse=0  ' 매개 변 수 는 선택 할 수 있 습 니 다.어떤 형식 으로 파일 을 열 었 는 지 알려 줍 니 다.① 이 매개 변 수 를 무시 하고 ASCII 형식 으로 파일 을 엽 니 다.② Tristate UseDefault=-2 시스템 기본 형식 으로 파일 열기;③ TristateTrue=-1 유 니 코드 형식 으로 파일 열기;④ TristateFalse=0 ASCII 형식 으로 파일 을 엽 니 다.물론 OpenTextFile 방법 으로 파일 을 열 수도 있 습 니 다.           Dim filename    filename = "test.txt"       ' 결 성 경로 c:\win.     Set fs = CreateObject("Scripting.FileSystemObject")    Set f = fs.GetFile(filename)    Set readf = f.OpenAsTextStream(ForReading,TristateFalse)     s = readf.ReadLine    Do While readf.AtEndOfLine <> True        s = readf.ReadLine        Response.write s & ""             ' 파일 을 한 줄 씩 읽 고 화면 을 씁 니 다.Loop readf.close%>

좋은 웹페이지 즐겨찾기