'-------------------------------------------------
' 쿠키 중복 체크
'-------------------------------------------------
Function CookieDuplicateCheck(tableName, idx)
dim dupliChk
dim c_read_idx
dim i
dupliChk = false
c_read_idx = Request.Cookies("C_TABLE_NAME")("READ")
Response.Cookies("C_TABLE_NAME") = tableName
Response.Cookies("C_TABLE_NAME").Path = "/"
Response.Cookies("C_TABLE_NAME").Expires = date+1
arrRead = split(c_read_idx,",")
for i = 1 to UBound(arrRead)
if CInt(idx) = CInt(Trim(arrRead(i))) then
dupliChk = true
end if
next
if dupliChk = true then
Response.Cookies("C_TABLE_NAME")("READ") = c_read_idx
else
Response.Cookies("C_TABLE_NAME")("READ") = c_read_idx & "," & idx
end if
CookieDuplicateCheck = dupliChk
End Function
' 쿠키 중복 체크
'-------------------------------------------------
Function CookieDuplicateCheck(tableName, idx)
dim dupliChk
dim c_read_idx
dim i
dupliChk = false
c_read_idx = Request.Cookies("C_TABLE_NAME")("READ")
Response.Cookies("C_TABLE_NAME") = tableName
Response.Cookies("C_TABLE_NAME").Path = "/"
Response.Cookies("C_TABLE_NAME").Expires = date+1
arrRead = split(c_read_idx,",")
for i = 1 to UBound(arrRead)
if CInt(idx) = CInt(Trim(arrRead(i))) then
dupliChk = true
end if
next
if dupliChk = true then
Response.Cookies("C_TABLE_NAME")("READ") = c_read_idx
else
Response.Cookies("C_TABLE_NAME")("READ") = c_read_idx & "," & idx
end if
CookieDuplicateCheck = dupliChk
End Function
'asp' 카테고리의 다른 글
http://www.xx.xx/domain <ㅡ 이런식으로 주소 사용하기 (0) | 2007.05.02 |
---|---|
asp로 이미지 사이즈(크기) 얻는 함수 (1) | 2007.05.02 |
페이징(paging) 처리 함수 (1) | 2007.05.02 |
Request 를 폼의 히든(hidden) 값으로 자동 생성해주기 (1) | 2007.05.02 |
진수 변환 시키기 (0) | 2007.05.02 |