Welcome Guest! You need to login or register to make posts.

Notification

Icon
Error

Options
Go to last post Go to first unread
sorenmt84  
#1 Posted : Sunday, February 13, 2011 12:58:47 PM(UTC)
sorenmt84

Rank: Newbie

Groups: Member
Joined: 1/21/2010(UTC)
Posts: 7

I have enable the description filed so uploaders can comment on the pictures before upload - the problem is just, if I juse the danish letters "Æ Ø Å" its converted to some stranges letteres when I save it.

Exsample: A "ø" becomes "ø" when i save it.

I save the description to a Access database like this:

rs("beskrivelse") = objUpload.Form("Description_" & i)

Is there somehow I can convert to the right letters

Dmitry.Obukhov  
#2 Posted : Sunday, February 13, 2011 10:30:59 PM(UTC)
Dmitry.Obukhov

Rank: Advanced Member

Groups:
Joined: 5/29/2010(UTC)
Posts: 1,310

Thanks: 8 times
Was thanked: 111 time(s) in 111 post(s)
Hello Søren,

You should to set CodePage to 65001 (UTF-8) value in your server-side code:

Code:

Sub ProcessABCUpload
  Dim objUpload
  Set objUpload = Server.CreateObject("ABCUpload4.XForm")
  objUpload.CodePage = 65001 'UTF8
  …
  '…Your code…

Edited by user Sunday, February 13, 2011 10:31:44 PM(UTC)  | Reason: Not specified

Best regards,

Dmitry Obukhov

Technical Support. Aurigma, Inc.

Users browsing this topic
Guest
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.