'이전 글의 board_idx 값을 구하는 부분
SQL = "Select Min(board_idx) from MyBoard where board_idx > " & board_idx
Set Rs = adoDb.Execute(SQL)
if Not Rs.EOF then
prev_idx = Rs(0)
end if
'다음 글의 board_idx 값을 구하는 부분
SQL = "Select Max(board_idx) from MyBoard where board_idx < " & board_idx
Set Rs = adoDb.Execute(SQL)
if Not Rs.EOF then
next_idx = Rs(0)
end if
이 방법 말구..비용적게 드는 방법없수?
SQL = "Select Min(board_idx) from MyBoard where board_idx > " & board_idx
Set Rs = adoDb.Execute(SQL)
if Not Rs.EOF then
prev_idx = Rs(0)
end if
'다음 글의 board_idx 값을 구하는 부분
SQL = "Select Max(board_idx) from MyBoard where board_idx < " & board_idx
Set Rs = adoDb.Execute(SQL)
if Not Rs.EOF then
next_idx = Rs(0)
end if
이 방법 말구..비용적게 드는 방법없수?
반응형
'Dev > Web' 카테고리의 다른 글
프린트.. (0) | 2003.11.04 |
---|---|
카테고리 다중지원 설계 (2) | 2003.10.25 |
[질문] 사이즈별, 칼라별 재고가 다른경우.. (2) | 2003.10.07 |
사이트 변경시.. (5) | 2003.09.27 |
jmail에서.. (1) | 2003.09.24 |