nel db ho un campo valuta in cui vedo bene es: 10,50€

ma non me li stampa a video

codice:
<%
if isNull(Rec("prezzo"))=true or len(Trim(Rec("prezzo")))<2 then
Response.write("Per info su prezzi scrivici una email")
Else
Response.write "Prezzo: &euro;" &(Rec("prezzo"))
end if
%>