produtos
<%= sql("principal") %>
Selecione o Produto abaixo:
<%
Set sql = abredb.Execute("SELECT * FROM categoria WHERE nome order by nome desc")
If sql.EOF or sql.BOF Then
Response.Write "- Nenhuma categoria cadastrada
"
Else
Do While Not sql.Eof
%>
- " title="<%= sql("nome") %>"><%= sql("nome") %>
<%
sql.MoveNext
Loop
End If
%>
<%
Set sql = abredb.Execute("SELECT * FROM home")
%>