明輝手游網(wǎng)中心:是一個免費提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺!

一個容易的網(wǎng)上書城的例子(一)

[摘要]數(shù)據(jù)庫結(jié)構(gòu):第一個庫shopbag.mdb,兩個表:buyiformation表存客戶信息如下:Name,Tel,Address,ProductID,Quatity,Sum第二個表products存商品信息:CategoryID(商品分類號),productid,productname,descr...
數(shù)據(jù)庫結(jié)構(gòu):
第一個庫shopbag.mdb,兩個表:
buyiformation表存客戶信息如下:
Name,Tel,Address,ProductID,Quatity,Sum
第二個表products存商品信息:
CategoryID(商品分類號),productid,productname,descrition,
ischeck(用戶是否選這一商品),price(單價)

下面試一個工具文件!util.asp

<%
Sub ListCategory( conn )

   Set rs = conn.Execute( "Category" )
   While Not rs.EOF
%>
 <A HREF=buy.asp?CategoryID=<%=rs("CategoryID")%>&Description=<%=Server.URLEncode(rs("Description"))%>>
<%=rs("Description")%>
</A> 
<%
      rs.MoveNext
   Wend
End Sub

Sub PutToShopBag( ProductID, ProductList )
   If Len(ProductList) = 0 Then
      ProductList = "'" & ProductID & "'"
   ElseIf InStr( ProductList, ProductID ) <= 0 Then
      ProductList = ProductList & ", '" & ProductID & "'"
   End If
End Sub

%>