´ç½Å¿¡°Ô·Î ¶°³ª´Â ²Þ¼Ó¿©Çà - ²Þ¼Ó³ª¶ó(http://www.inyourdream.net)
ID¿Í Password¸¦ ÀÔ·ÂÇϼ¼¿ä.
ÀÔ±¹Çϱâ
|
¿µÁÖ±Ç ½Åû
¸öºÎ¸² °ñ¶ó°ñ¶ó
¼Ò±Ù¼Ò±Ù
µµ¶õµµ¶õ
³«¼¸¶´ç
Âø°¢ÇѾÆÀÌ
¼ýÀÚ¸ÂÃß±â
¼Ò¿øºô±â
ÈçÀû³²±â±â
²Þ¼Ó¿©Çà
Ä£±¸Áý ³î·¯°¡±â
¸ðµÎµå¸²´ÔÀÇ È¨
î¤éÞ´ÔÀÇ È¨
Çö¿ì´ÔÀÇ È¨
º°¾ÆÇØ´ÔÀÇ È¨
ÇÞ»ì´ÔÀÇ È¨
À̳ª´Ï´ÔÀÇ È¨
À¯¸®¾Ë´ÔÀÇ È¨
³È³ÈÀÌ´ÔÀÇ È¨
²ÀÁö´ÔÀÇ È¨
´ë¼º´ÔÀÇ È¨
µî·ÏÇϽǶ§´Â ÇʼöÇ׸ñÀ» ¸ðµÎ ÀÔ·ÂÇÏ¼Å¾ß ÇÕ´Ï´Ù.
À̸§
*
HTML »ç¿ë
Á¦¸ñ
*
¼±ÅÃ
ÀÚÀÛ
»ç¶û
À¯¸Ó
ÀÚÀ¯
̵̧
¾Ë¸²
Áú¹®
±âŸ
³»¿ë
*
> ¿¡·¯¸Þ½ÃÁö.... > Microsoft VBScript ·±Å¸ÀÓ ¿À·ù error '800a000d' > > Çü½ÄÀÌ ÀÏÄ¡ÇÏÁö ¾Ê½À´Ï´Ù: 'Basket' > > /hosteng/shopping/shopping.asp, line 90 > -------------------------------------------------- > ÀÌ ºÎ¹®ÀÌ ¼Ò½ºÀÔ´Ï´Ù. > Á» ºÎŹµå¸³´Ï´Ù. > > <%@ LANGUAGE="VBSCRIPT" %> > > <% response.buffer= true%> > > >
»óÇ° ÁÖ¹® »ó¼¼Á¤º¸
>
>
>
> >
> > <% > > Session("iSubTotal") = 0 > iCount = Session("ItemCount") > Basket = Session("MyBasket") > goodscode = request("goodscode") > > If Request("order") = "ok" Then > > > '°í°´ÀÌ ¼±ÅÃÇÑ Á¦Ç°ÀÇ Å¸ÀÔÀ» µ¥ÀÌÅͺ£À̽º·Î Àü´ÞÇÏ¿© ÇØ´ç Á¦Ç°¸¸À» °¡Á®¿Â´Ù. > fr = Request("fr") > kind = Request("kind") > If kind = "" Then > kind = "00" > End If > 'Response.write "==>" &fr > SQL = "SELECT HG_COMPANY,HF_FIRSTCODE,HG_STANDARD,HS_SECONDCODE,HT_THIRDCODE,HG_KIND,HG_NAME,HG_PRICE,HG_SEQ,HG_UNIT FROM HOST_FIRST,HOST_SECOND,HOST_THIRD,HOST_GOODS" > SQL = SQL &" WHERE HG_FIRSTCODE = '"& Request("firstcode") &"' AND HG_FIRSTCODE = HF_FIRSTCODE AND HF_FIRSTCODE = HS_FIRSTCODE AND HS_FIRSTCODE = HT_FIRSTCODE " > SQL = SQL &" AND HG_SECONDCODE = '"& Request("secondcode") &"' AND HG_SECONDCODE = HS_SECONDCODE AND HS_SECONDCODE = HT_SECONDCODE AND HT_SECONDCODE = HG_SECONDCODE" > SQL = SQL &" AND HG_THIRDCODE = '"& Request("thirdcode") &"' AND HG_THIRDCODE = HT_THIRDCODE" > SQL = SQL &" AND HG_KIND = '"& kind &"'" > SQL = SQL &" AND HG_GOODSCODE = '"& goodscode &"'" > ' Response.write SQL > Set RS = DbCon.Execute(SQL) > > '°¢ ¹è¿¿¡ Á¦Ç°À» Á¤º¸¸¦ ³Ö´Â´Ù. > iCount = iCount + 1 > Session("ItemCount") = iCount > > If Not IsEmpty(RS) Then > response.write(Basket(constcompany,iCount)) > Basket(constcompany,iCount) = RS("HG_COMPANY") > > > Basket(constfirstcode,iCount) = RS("HF_FIRSTCODE") > Basket(conststandard,iCount) = RS("HG_STANDARD") > Basket(constsecondcode,iCount) = RS("HS_SECONDCODE") > Basket(constthirdcode,iCount) = RS("HT_THIRDCODE") > Basket(constkind,iCount) = RS("HG_KIND") > Basket(constno,iCount) = goodscode > > goodsname = RS("HG_NAME") > If RS("HG_KIND") <> "00" Then > KINDSQL = "SELECT HD_KINDNAME FROM HOST_KIND WHERE HD_FIRSTCODE = '"& RS("HF_FIRSTCODE") &"' AND HD_SECONDCODE = '"& RS("HS_SECONDCODE") &"' AND HD_THIRDCODE = '"& RS("HT_THIRDCODE") &"' AND HD_KIND = '"& RS("HG_KIND") &"'" > 'Response.write kindsql > Set kind = DbCon.Execute(KINDSQL) > kindname = kind(0) > kind.Close > Set kind = Nothing > goodsname = RS("HG_name")&"("& kindname &")" > End If > Basket(constName,iCount) = goodsname > Basket(constQuantity,iCount) = Request("howmany"& fr &"") > Basket(constUnitPrice,iCount) = RS("HG_PRICE") > Basket(constseq,iCount) = RS("HG_SEQ") > Basket(constunit,iCount) = RS("HG_UNIT") > Session("MyBasket") = Basket > End If > > RS.Close > DbCon.Close > End If > > If Request("del") = "ok" Then 'ÁÖ¹®Áß ÀϺΠ»èÁ¦. > > ReDim tmpBasket(50,30) > j = 0 > > For i = 1 to iCount > If (i <> int(goodscode)) Then > j = j + 1 > > For n = 1 to 30 > tmpBasket(n,j) = Basket(n,i) > Next > End If > Next > Session("MyBasket") = tmpBasket > Basket = Session("MyBasket") > Session("ItemCount") = j > iCount = j > > ElseIf Request("Action") = "°è»êÇϱâ" Then 'ÁÖ¹®Çϱâ > Response.Redirect "shoppinglogin.asp" > ElseIf Request("Action") = "¼öÁ¤" Then '´Ù½Ã°è»ê > If iCount = 1 Then > If asc(left(Request("Quantity"& 1),1)) > asc(9) Then > tcount = 100 > Else > > tcount = Round(Request("Quantity" & 1),0) > If tcount = 0 Then > tcount = 1 > End If > End If > Basket(constQuantity,1) = tcount > Session("MyBasket") = Basket > Else > For i = 1 to iCount > If asc(left(Request("Quantity"& i),1)) > asc(9) Then > tcount = 100 > Else > tcount = Round(Request("Quantity" & i),0) > If tcount = 0 Then > tcount = 1 > End If > End If > Basket(constQuantity,i) = tcount > Session("MyBasket") = Basket > Next > End If > ElseIf Request("Action") = "ÁÖ¹®Ãë¼Ò" Then 'Àüü ÁÖ¹®Ãë¼Ò > file= Request("file") > iCount = 0 > Session("ItemCount") = iCount > If file = "" Then > Response.Redirect "../index_body.asp" > Else > Response.Redirect ""& file &"" > End If > End If > If session("ItemCount") = "0" Then > Response.Write(" ") > End If > %> > > >
>
>
>
<%=session("id") %>ȸ¿ø´ÔÀÇ Shopping Cart ³»¿ëÀº ¾Æ·¡¿Í °°½À´Ï´Ù.
>
>
>
>
>
>
>
>
>
>
>
>
»óÇ°¸í
>
Á¦Á¶»ç
>
±Ô°Ý
>
´ÜÀ§
>
¼ö·®
>
°¡°Ý
>
»èÁ¦
>
> <% > iSubtotal = 0 > totalvat = 0 > For i = 1 to iCount > %> >
>
<%=basket(constname,i)%>
>
<%=Basket(constcompany,i)%>
>
<%=Basket(conststandard,i)%>
>
<%=Basket(constunit,i)%>
>
VALUE="<%=Basket(constQuantity,i)%>" SIZE=2>
>
>
> <%=FormatCurrency(Basket(constUnitPrice,i) * Int(Basket(constQuantity,i)))%>
>
>
>
>
&secondcode=<%=Request("secondcode")%>&thirdcode=<%=Request("thirdcode")%>">»èÁ¦
>
>
> <%If (Basket(constUnitPrice,i)) <> "" Then > iSubTotal = iSubtotal + (Basket(constUnitPrice,i) * Basket(constQuantity,i)) > If Basket(constfirstcode,i) <> "pb" Then > totalvat = totalvat + ((Basket(constUnitPrice,i) * Int(Basket(constQuantity,i))) * 0.1) > End If > session("totalvat") = totalvat > session("Totalnmount") = isubtotal > End If > Next%> >
> >
>
"> >
"> >
"> >
"> >
ºÎ °¡ ¼¼
>
<% = FormatCurrency(session("totalvat"))%>
>
>
>
> >
ÃÑ ±Ý ¾×
>
<% = FormatCurrency(session("Totalnmount") + session("totalvat"))%>
>
>
>
>
>
>
> > > > > > > >
>
>
>
>
>
window.history.back()<%ElseIf Basket(constfirstcode,iCount) = "pb" Then%>location.href=('../product/third_book_list.asp?firstcode=<%=Request("firstcode")%>&secondcode=<%=Request("secondcode")%>&thirdcode=<%=Request("thirdcode")%>');<%Else%>location.href=('../product/commoditylist.asp?firstcode=<%=Request("firstcode")%>&secondcode=<%=Request("secondcode")%>&thirdcode=<%=Request("thirdcode")%>');<%End If%>">
>
> >
>
>
>
>
>
>
>
> > > > -----------------------------------------------------------
Ãß°¡ÇÒ À̹ÌÁö¸¦ ÀÔ·ÂÇϼ¼¿ä.
À̹ÌÁö 1
À̹ÌÁö¼³¸í 1
Ãß°¡ÇÒ ÀڷḦ ÀÔ·ÂÇϼ¼¿ä.
ÀÚ·á 1
ÀÚ·á¼³¸í 1
Ãß°¡ÇÒ ½ÎÀÌÆ®¸¦ ÀÔ·ÂÇϼ¼¿ä.
°ü·Ã½ÎÀÌÆ® 1
½ÎÀÌÆ®¼³¸í 1
Password
*