|
Veja os produtos anunciados.
Estes anúncios são de inteira responsabilidades da
empresa <%=rstemp("Nome")%>
| Nome |
: |
<% if rstemp("Home_Page") <> "" then %>
" target="_blank"><%=rstemp("Nome")%> |
<% else %>
<%=rstemp("Nome")%> |
<% end if %>
| Endereço |
: |
<%=rstemp("Endereco")%> |
CEP |
: |
<%=rstemp("Cep")%> |
| Bairro |
: |
<%=rstemp("Bairro")%> |
Cidade |
: |
<%=rstemp("Cidade")%> |
| Telefone |
: |
<%=rstemp("DDD")%> - <%=rstemp("Telefone")%> |
<%
rstemp.close
Set rstemp = Database.Execute("SELECT * FROM Ofertas_Dia where Login='" & Login & "'")
if rstemp.eof then %>
Não há oferta anunciada...
<% else %>
| Produto |
Marca |
Unidade |
Valor |
Oferta
válida até
(ou enquanto
durar o estoque)
|
<% Do Until rstemp.EOF = True %>
| <%=rstemp("Produto")%> |
<%=rstemp("Marca")%> |
<%=rstemp("Unidade")%> |
R$ <%=FormatNumber(rstemp("Valor"))%> |
<%=DataBr(rstemp("Dt_Validade"))%> |
<% rstemp.MoveNext
Loop %>
<% end if %>
|