ASP 반복문(For , Do While...)
2013. 1. 4. 17:53ㆍWEB/ASP
반응형
for문
<%
dim count
for count = 0 to 3
response.write count
count = count + 1
next
결과는 0 1 2 3
%>
do while 문
<%
DB연결 후 결과를 레코드셋(RecordSet)에 담아서 화면에 출력하는 예문
Set RS = DB연결 후 실행
if RS.eof or RS.bof then '실행결과가 없을 경우(예외처리)
response.write "실행 결과가 없습니다."
else
do while RS.eof = false '레코드셋에 값이 있으면 계속 반복
response.write RS(0)
response.write RS(1)
response.write RS(2)
RS.moveNext
loop
end if
%>
반복문 수행 중 Exit do를 사용하여 반복문을 탈출합니다.
<%
do while/until 조건
실행
edit do 반복문 수행 중 탈출 시 Exit 사용
실행
loop
%>
반응형
'WEB > ASP' 카테고리의 다른 글
ASP 기본적으로 많이 쓰이는 함수 (0) | 2013.01.04 |
---|---|
ASP의 비교문에서 많이 사용되는 함수 (0) | 2013.01.04 |
ASP 형변환(Cint, Clng, Cdbl, Cstr, Csng, Cdate...) (0) | 2013.01.04 |
ASP 특정문자가 포함된 문자열 찾기(instr,instrrev) (0) | 2013.01.04 |
ASP 한글 인코딩 캐쉬 (0) | 2013.01.04 |