제가 퍼블리셔로 지금 근무를 하고있는데 ㅠㅠ
갑자기 게시판쪽 수정이..생겨서 ㅠ 급하게 질문드립니다..ㅠㅠ
제가 asp쪽이랑 sql문은 처음 하는거라서 ㅠㅠ
지식인도 물어보고 ㅠㅠ 네이버도찾아보고 했는데 ㅠㅠ
결과를 못찾고 여기까지 오게됐습니다 ㅠㅠ
사진에서 보면 게시판이 ... 4페이지 까지있는데
관리자페이지에서는 db가 살아있고 ... 홈페이지 상에서는 1페이지
까지만 보이게 했으면 좋겠다고 하던데 ㅠㅠ
잘모르겠어여 ㅠㅠ
잘이 아니고 전혀 모르겠습니다 ㅠㅠ
잘못건들였다가 다른 게시판도 어케댈것같구 ㅠㅠ
게시판 코드는 75이구
/newweb/board_skin/board_list.asp?bbs_code=75 이거에영 ㅠㅠ
그리구 사람들에게 물어보다가 주신건데여 ㅠㅠ
여기서 수정하면 댄다고하든데 ...
sql = "up_bbs_type_normal_list" '게시판 리스트
params = array(_
db.MakeParam("@bbs_code", adInteger, adParamInput, 4, bbs_code), _
db.MakeParam("@page", adInteger, adParamInput, 4, page), _
db.MakeParam("@page_size", adInteger, adParamInput, 4, PAGE_SIZE), _
db.MakeParam("@etc", adVarWChar, adParamInput, 20, etc), _
db.MakeParam("@key", adInteger, adParamInput, 4, key), _
db.MakeParam("@word", adVarWchar, adParamInput, 20, word), _
db.MakeParam("@total_cnt", adInteger, adParamOutput, 4, null) _
)
Set rs = db.ExecSPReturnRS(sql, params, Nothing)
If rs.eof = False Then
data = rs.getRows()
data_cnt = UBound(data, 2)
total_cnt = db.GetValue(params, "@total_cnt")
Else
data_cnt = -1
total_cnt = 0
End If
여기서 하면 댄다는데 ㅠㅠ 어케 수정을 해야댈까여 ㅠㅠ
도와주세여 ㅠㅠㅠ
Comment 1
-
항해자™
2016.07.25 18:42
20개라고 가정,,,,
if data_cnt > 20 then
data_cnt = 20
end if