|
|
|

|
<%
sql="select top 6 productID,catalogid,type_id,small_photo from v_business_product where is_comm=1"
set rs=server.CreateObject("adodb.recordset")
rs.Open sql,conn,1
if not rs.EOF then
i=0
while not rs.EOF
Response.Write " & ") | "
rs.MoveNext
i=i+1
if i mod 3 = 0 then Response.Write ""
wend
end if
%>
|
|
|
|
|
|
更多...
|
|
|
|