RS,SET 쿼리 형식
rs 단순리스트 쿼리
strSQL = "select * from 테이블명"
strSQL = strSQL & " where 1=1 "
strSQL = strSQL & " and 조건 "
rs.open strSQL ,db,1
'response.write strSQL
if not rs.eof then
컬럼1 = rs(" 컬럼1")
컬럼2 = rs("컬럼2")
end if
rs.close
db.close
SET 단순 리스트 쿼리
strSQL = "select * from 테이블명"
strSQL = strSQL & " where 1=1 "
strSQL = strSQL & " and 조건 "
'response.write strSQL
set kk = db.execute(strSQL)
if not kk.eof then
컬럼1 = kk(" 컬럼1")
컬럼2 = kk("컬럼2")
end if
set kk= nothing
set db = nothing
SET 반복 리스트 쿼리
strSQL = "select * from 테이블명"
strSQL = strSQL & " where 1=1 "
strSQL = strSQL & " and 조건 "
'response.write strSQL
set kk = db.execute(strSQL)
do while not kk.eof
%>
<input type="radio" name="" value="<%= kk("컬럼1")%>/<%=kk("컬럼2")%>" onclick="selectGbn('<%= kk("컬럼3") %>');" ><%= kk컬럼1") %></br>
<%
kk.movenext
loop
set kk= nothing
'Language(언어) > ASP' 카테고리의 다른 글
ASP 엑셀 다운 받기 관련 코딩 (0) | 2013.12.03 |
---|---|
ASP CDO.Message.1 오류 '80040220' (0) | 2013.11.20 |
ASP Response 개체 (0) | 2013.11.01 |
ASP Server 개체 (0) | 2013.11.01 |
ASP Applicetion 개체 (0) | 2013.11.01 |
댓글