-----------------------------------------------------------
request 객체
-----------------------------------------------------------
ASP파일: Request.QueryString (" 변수 이름 ")
ASP파일: Request.Form (" 변수 이름 ")

Request.cookies ( " 쿠키 이름 " ) : \'쿠키 이름\'의 cookie를 불러올 수 있다.

*사용법
Response.Cookies("usercheck")("lastdate") = now
Response.Cookies("usercheck").expires = #11/15/2001 15:00:00#

-----------------------------------------------------------
Session객체
-----------------------------------------------------------
Session ( "변수이름" ) = 1

*사용법
Session.timeout = 10 : 세션 유지 default 기간인 20분을 조정.
-----------------------------------------------------------

-----------------------------------------------------------

<p align=center>
IP address : <%=Request.ServerVariables("Remote_host")%><br>
브라우저와 Os : <%=Request.ServerVariables("Http_user_agent")%><br>
Session 값 : <%=session.SessionID%>

-----------------------------------------------------------
▣ OpenTextFile 메쏘드 (fileSystemObject객체의)
[사용형식]
<% 오브젝인스턴스명.OpenTextFile("파일명", iomode, create, format) %>
오브젝인스턴스명 : Server.CreateObject문장에서 생성된 인스턴스를 저장한 변수명

파일명 : 위 형식에서처럼 파일명을 ""사이에 넣어주거나, ex) "aa.txt", "c:\aa.txt"
파일의 경로명이 저장되어 있는 변수명.(이때는 ""가 필요없다)

iomode : io? (왠지 input/output??) , 파일을 무슨 모드로 열 것인지 선택한다.
1(read:디폴트) // 2(write) // 3(append) , 생략가능

format : 파일포멧으로....디폴트 Ascii포멧 , 생략가능
-----------------------------------------------------------
[출처] FSO-OpenTextFile 메쏘드|작성자 진카자마

 

'asp' 카테고리의 다른 글

ASP성능 참고  (0) 2008.09.24
ASP 응용 프로그램의 문자열 처리 성능 향상  (0) 2008.09.23
비주얼 베이직으로 간단하게 만드는 ASP용 COM+  (0) 2008.04.08
[ASP] SQLHelper  (1) 2007.10.05
ASP/테이블 너비 고정시키기  (0) 2007.05.03

+ Recent posts