<% '########### 최근 본 상품 쿠키에 담기 ################ pdtViewSize = 4 //보여질개수 pdtViewTemp = "" pdtViewList = request.cookies("pdtViewList") '본 내역을 문자열로받는다. pdtViewArray= split(trim(pdtViewList), ",") '본 내역이 여러개 있으니, 콤마로 구분하여 배열 생성 pdtViewExist=false '이미 존재하는 지 확인하는 플래그
for i = 0 to ubound(pdtViewArray) if pdtViewArray(i) = pdt_cd then '넣을려구 했는데 리스트에 이미 있으면 존재하는걸로 표시 pdtViewExist=true end if Next '본게 리스트에 없으면, 추가해준다. 없으면 추가해줘야지 안그러면 똑같은 거 볼때마다 들어간다. if not pdtViewExist Then for i = 0 to ubound(pdtViewArray) if i < pdtViewSize-1 then pdtViewTemp = pdtViewTemp&","&pdtViewArray(i) end if next pdtViewList = pdt_cd & pdtViewTemp response.cookies("pdtViewList")=pdtViewList
end If '############ //최근 본 상품 쿠키에 담기 ################### %> <table border="0" cellpadding="0" cellspacing="0"> <% '############ 최근 본 상품 쿠키에 보여주기 ################### pdtViewList = request.cookies("pdtViewList") ' 이 루틴은 단순히 쿠키에 있는걸 뿌려주는 단순 루틴 pdtViewArray= split(trim(pdtViewList), ",")
for i = 0 to ubound(pdtViewArray) If i<=3 then ' select * from 상품 where 상품코드=pdtViewArray(i) %> <tr> <td height="40" align="center"> <table width="30" height="30" border="0" cellpadding="0" cellspacing="0"> <tr> <td><%=pdtViewArray(i)%><img src="../Img/new/main/ex_img.gif" width="30" height="30"></td> </tr> </table> </td> </tr>
<% End if Next
For j=i+1 To 3 %> <tr> <td height="40" align="center"> <table width="30" height="30" border="0" cellpadding="0" cellspacing="0"> <tr> <td> </td> </tr> </table> </td> </tr>
<% next %> </table> |