" class="unnamed1" target="a1">PAKLOCK,DRAWER
LOCK & LOCK SET类别的链接的代码
<%
Dim Recordset1__MMColParam
Recordset1__MMColParam = "1"
if (Request.QueryString("product_kind") <> "") then Recordset1__MMColParam = Request.QueryString("product_kind")
%>
<%
set Recordset1 = Server.CreateObject("ADODB.Recordset")
Recordset1.ActiveConnection = MM_jiarongproduct_STRING
Recordset1.Source = "SELECT * FROM product WHERE product_kind = '" + Replace(Recordset1__MMColParam, "'", "''") + "'"
Recordset1.CursorType = 0
Recordset1.CursorLocation = 2
Recordset1.LockType = 3
Recordset1.Open()
Recordset1_numRows = 0
%>
<%
Dim Repeat1__numRows
Repeat1__numRows = 10
Dim Repeat1__index
Repeat1__index = 0
Recordset1_numRows = Recordset1_numRows + Repeat1__numRows
%>显示记录集的代码
<%
While ((Repeat1__numRows <> 0) AND (NOT Recordset1.EOF))
%>
" width="152" height="196"> |
<%=(Recordset1.Fields.Item("product_number").value)%> |
<%
Repeat1__index=Repeat1__index+1
Repeat1__numRows=Repeat1__numRows-1
Recordset1.MoveNext()
Wend
%>
重复显示图片的代码