Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

£ prefixed with  in database 1

Status
Not open for further replies.

theevilone

IS-IT--Management
Aug 19, 2001
52
GB
Hi,

I have problem inserting data into my SQL Server db using Coldfusion MX.

When I insert the "£" symbol to denote GPB, in the data, the data is prefixed with a "Â". Is this a known issue. Any help or fixes would be appreciated.

Thanks,
Mary
 
Mary

if memory serves, I think this is a problem with the default encoding that CFMX uses. What we did is to put the following two lines into our Application.cfm file and this fixed the problem by forcing CFMX to use the this encoding.

<cfcontent type=&quot;text/html; charset=iso-8859-1&quot;>
<cfset setEncoding(&quot;form&quot;,&quot;iso-8859-1&quot;)>

hope this helps!

Tony
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top