Topbar
Topbar
Sign in
|
Join
|
Client Center
Home
Products
Client Center
Contact
Purchase
Support forums
»
Products
»
Ajax Uploader
»
Re: International characters in filename
International characters in filename
Last post 10-09-2009, 2:58 AM by
mejner
. 5 replies.
Sort Posts:
Oldest to newest
Newest to oldest
Previous
Next
10-08-2009, 3:01 AM
56210
mejner
Joined on 07-20-2009
Posts 8
International characters in filename
Reply
Quote
How do I get the Ajax Uploader to upload international characters such as å, ä and ö in a correct manner? Now they get replaced with "crap" characters.
10-08-2009, 4:39 AM
56211
in reply to
56210
cutechat
Joined on 07-22-2004
Posts 2,332
Re: International characters in filename
Reply
Quote
Hi,
Please test this url :
http://ajaxuploader.com/Demo/fulltest.aspx
Regards,
Terry
10-08-2009, 7:18 AM
56221
in reply to
56211
mejner
Joined on 07-20-2009
Posts 8
Re: International characters in filename
Reply
Quote
Yes, that seems to work. But my form also displays the åäö characters. It's when I try to deal with the data inside the Uploader_FileUploaded sub that characters changes.
I viewed the source of the full demo but I couldn't see any encoding.
10-08-2009, 9:11 AM
56226
in reply to
56221
cutechat
Joined on 07-22-2004
Posts 2,332
Re: International characters in filename
Reply
Quote
Hi,
Make sure you are using the newest version.
One of the old version has problem on special chars.
You can find the exact version from file description .
Regards,
Terry
10-08-2009, 2:08 PM
56236
in reply to
56226
mejner
Joined on 07-20-2009
Posts 8
Re: International characters in filename
Reply
Quote
I'm using version 3.0 2009091.
I don't need to set any encoding or encode the characters?
In my web.config I have ISO-8859-1 which I need to the rest of my app, when I changed to UTF-8 in the web.config I got errors at other parts of the webb app.
10-09-2009, 2:58 AM
56255
in reply to
56236
mejner
Joined on 07-20-2009
Posts 8
Re: International characters in filename
Reply
Quote
Since no other solution came up I solved it with this crappy function:
Private Function aao(ByVal str As String) As String
str = Replace(str, "Ã¥", "å")
str = Replace(str, "ä", "ä")
str = Replace(str, "ö", "ö")
Return str
End Function