MX File Upload Forum :: Is it still not support double-bytes character?
This thread was displayed: 0 times
Starting with 17th May 2007, Adobe Systems will stop offering support for any version of the discontinued InterAKT products. As a result, we will not answer to new support incidents starting with May 17th, 2007. Pending support incidents will still be followed in order to be closed. The product forums will remain open and be transformed in user-to-user forums. The general forums will be made read-only and not allow new posts or comments.
For more information about the affected products visit: www.interaktonline.com/Support/
David Wu
03-09-2009 12:06:22 GMT +2
|
language: ASP
charset: utf-8
if form was multipart/form-data type, double-bytes character such as Chinese, Japaneses will become garbage characters like ????
|
|
|
Fred at ExelWebs.com
03-09-2009 12:56:57 GMT +2
|
It has nothing to do with the Interakt extensions but everything to do with how you define your html and database character sets.
There are two possible problems.
1. Your character encoding in your html page.
This is working for me where I am displaying Czech Language characters on an html page.
<meta http-equiv="Content-Type" c>
2. Your character encoding in your database (mysql)
Latin1 in my case. That covers the eastern European and English characters.
|
|
|
David Wu
03-09-2009 13:40:00 GMT +2
|
html page
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<meta http-equiv="Content-Type" charset=utf-8" />
my case is ASP + MS ACCESS
I am hundred percent sure html and database is fine, because it's work when I use another upload component.
|
|
|