» Leonard Smith, MD
» Books
» Health News
» Links of Interest
» Wholesale Info
<%
strSql="select count(productID) as numberProd from product where '"&DateAdd("m","-1",date)&"'<=dateAdded and active = 1 and masterCategoryID<>25 "
set rsNewProduct=cn.execute(strSql)
%>
New Product:
<%
'response.write(rsNewProduct("numberProd"))
Randomize
i=0
'i=cint(rsNewProduct("numberProd"))
x=cint(round(rnd()*rsNewProduct("numberProd")))
'response.write(x)
'response.write(round(rnd()*i))
strSql="select productID,name from product where '"&DateAdd("m","-1",date)&"'<=dateAdded and active = 1 and masterCategoryID<>25 "
set rsNewProductID=cn.execute(strSql)
do while NOT rsNewProductID.BOF AND NOT rsNewProductID.EOF and i<=x+1
if i=x then
%>
.htm">
" alt="<%=rsNewProductID("name")%>" style="float: center; padding: 0px 0px 0px 0px; border: none;" height="100">
<%
end if
i=i+1
rsNewProductID.movenext
loop
'response.write(rsNewProductID("productID"))
set rsNewProduct=Nothing
set rsNewProductID=Nothing
%>