Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
koeniga #1
UTF Encoding
I am puting into a SQL server DB that is set to VarChar and i am using CF 6.1.
I want to do this in Japanese however all I am getting is "????" instead of
japanese characters.
What do I have to do to have everything come out in Japanese?
Thank you in advance.
<cfprocessingdirective pageEncoding="UTF-8">
<cfcontent type="text/html; charset=UTF-8">
<cfparam name="pass" default="0">
<cfif pass eq '1'>
<cfquery name="cat" Datasource = "test">
Insert INTO test
(test)
Values ('#test#')
</cfquery>
</cfif>
<cfquery name="cat" Datasource = "test">
SELECT *
FROM Test
</cfquery>
<html>
<body>
<cfoutput query="cat">
#test#,
</cfoutput>
<cfform action="jcat.cfm" method="post" enctype="multipart/form-data"
enablecab="yes">
<input name="pass" type="hidden" value="1">
<input name="test" type="text">
<input name="" type="submit">
</cfform>
</body>
</html>
koeniga Guest
-
FLV encoding
I want to have video on my website by allowing the users to upload their own videos to the site. Right now we are allowing upload of .avi and .mpeg... -
CGI.pm: encoding problems
I have a problem with inputing utf-8 via a text window using CGI.pm. This problem concerns UTF8 so apologies for posting something with Chinese... -
ISO_8859_8 encoding
PG 8.0 Beta 1 I created a new database with ISO_8859_8 encoding and I am getting an error of: Error: Could not access file... -
Encoding md5
Is it possible to implemente encoding functions of md5 type in ACCESS ? They are available in VB.Net but not in Access or Visual Basic Thanks... -
encoding not working?
Hi Marty, You actually can't specify the character encoding for the response document. We use utf-8 since all xml processors are required to... -
PaulH #2
Re: UTF Encoding
please don't post the same question in different forums. i've already answered your first post.
PaulH Guest



Reply With Quote

