Pessoal nesta tabela ASP o campo Preço está aparecendo desta forma 2490 o correto é 24,90. Como eu formato este campo na tabela ?
Muito Obrigado
<tr width=100%><td width=100%><table border=1 width=100%>
<tr><th>Nome</th><th>Descrição</th><th>Preço</th><th>Detalhes</th><th>Comprar</th></tr></thead></tr>
<%
Dim prod_cat_id,prod_id,prod_nome,prod_descricaop,prod_preco,malha1
malha1 = "sim"
while not lista_produtos.EOF
prod_cat_id = lista_produtos("cat_id")
prod_id = lista_produtos("id")
prod_nome = lista_produtos("nome")
prod_descricaop = lista_produtos("descricaop")
prod_preco = lista_produtos("preco")
%>
<tr width=100% valign=top class=<%=malha1%>><td><%=prod_nome%> </td><td><%=prod_descricaop%> </td><td>R$<%=prod_preco%></td>
<td valign=top align=center>
<a href="./detalheprod.asp?prod_id=<%=prod_id%>&url_comp=<%=Server.UrlEncode(Request.ServerVariables("QUERY_STRING"))%>"><img src="./images/lupa.gif" border=0></a>
</td><td align=center>
<form action="./carrocompras.asp" method=get>
<input type=hidden name=acao value=incluir>
<input type=hidden name=prod_id value=<%=prod_id%>>
<input type=hidden name=url_comp value="<%=Server.UrlEncode(Request.ServerVariables("QUERY_STRING"))%>">
<input type=text name=prod_quant maxlength=2 size=2 value=1> <input type=image src="./images/comprar.gif" border=0>
</form></td>
</tr>
<%
lista_produtos.movenext
If malha1 = "sim" Then malha1 = "nao" Else malha1 = "sim" End If
wend
End If
lista_produtos.Close
set lista_produtos = Nothing
%>
</table></td></tr>
</table>