Several solutions spring to mind, but it's been a long time since I used asp and I am unable to test any of these!
instead of formatcurrency, use formatnumber e.g.
PHP Code:
<%= "£" + FormatNumber((Rec2.Fields.Item("search_price").V alue), 2, -2, -2, -2) %>
or, try to correctly encode the pound sign
PHP Code:
<%=Server.HTMLEncode(FormatCurrency((Rec2.Fields.Item("search_price").V alue), 2, -2, -2, -2) )%>
or,if all else fails, change the page encoding to
PHP Code:
<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
Bookmarks