|
|
Welcome to ZenSoaps Online Store!
We pride ourselves on our variety of exclusively formulated handmade, hand cut and handpackaged soaps. There is no automation
whatsoever in our process, from cooking each small batch of soap in a large pot to hand packaging each bar. Every bar is made with pride. All of our soaps have
their natural glycerin intact, in addition to the other pure and exotic oils that lend each soap its unique quality. Feel the
difference.
Take a look at our categories on the left menu bar, we have several different lines of our unique soaps, special events favors and
gift baskets as well. We hope you enjoy your visit!
This Month's Featured Items
|
<%
'Get Featured Products
mySQL="SELECT idProduct,description,descriptionLong," _
& " listPrice,price,smallImageUrl,stock," _
& " fileName,noShipCharge " _
& "FROM products " _
& "WHERE active = -1 " _
& "AND homePage = -1 " _
& "ORDER BY sku "
set rsTemp = openRSopen(mySQL,0,adOpenStatic,adLockReadOnly,adCmdText,0)
'If Featured Products = 0 then use "_INCright_.asp"
if rsTemp.EOF then
call noProd()
else
'If Featured Products <= 2 then display single rows
if rsTemp.RecordCount <= 2 then
do while not rsTemp.EOF
call singleProd()
if not rsTemp.EOF then
rsTemp.MoveNext
end if
loop
'If Featured Products > 2 then display double rows
else
do while not rsTemp.EOF
call doubleProd()
if not rsTemp.EOF then
rsTemp.MoveNext
end if
loop
end if
end if
%>
|