Sub VoteComment
req_comment_idx = Request("comment_idx")
x.Init "TT_COMMENT",""
if request.cookies("vote")(req_comment_idx) = "ok" then
szMsg = "msgː♪이미 추천하셨습니다♪ː"
else
szField = "vote"
szValue = "vote + 1"
szWhere = "comment_idx="&req_comment_idx
if x.UpWhere(szField, szValue, szWhere) = false then
szMsg = "msgː♪코멘트 삭제 실패♪ː"
else
szMsg = "msgː♪추천 하였습니다.♪ː"
end if
Response.Cookies("vote").expires = #12/31/2010 00:00:00#
Response.Cookies("vote")(req_comment_idx) = "ok"
end if
Response.Write szMsg
REsponse.End
End Sub
req_comment_idx = Request("comment_idx")
x.Init "TT_COMMENT",""
if request.cookies("vote")(req_comment_idx) = "ok" then
szMsg = "msgː♪이미 추천하셨습니다♪ː"
else
szField = "vote"
szValue = "vote + 1"
szWhere = "comment_idx="&req_comment_idx
if x.UpWhere(szField, szValue, szWhere) = false then
szMsg = "msgː♪코멘트 삭제 실패♪ː"
else
szMsg = "msgː♪추천 하였습니다.♪ː"
end if
Response.Cookies("vote").expires = #12/31/2010 00:00:00#
Response.Cookies("vote")(req_comment_idx) = "ok"
end if
Response.Write szMsg
REsponse.End
End Sub
'asp' 카테고리의 다른 글
ASP 서버변수 값들 확인 스크립트 (0) | 2007.05.02 |
---|---|
동적으로 배열 크기 조절하는 팁 (0) | 2007.05.02 |
글 읽을때 조회수 증가 체크(쿠키 이용) (0) | 2007.05.02 |
오라클 clob타입 입력방법 (0) | 2007.05.02 |
request.form, request.querystring 값 확인 하기 (0) | 2007.05.02 |