Hi,
I've seen various forum posts that mention the ability to set ASPSmaryUpload's Codepage property in order to handle UTF-8 and other character encodings.
Example:
http://www.thescripts.com/forum/thread102044.html
I'd like to set this property so that foreign characters in form submissions are posted correctly especially for text fields.
When I try doing it, I receive the following message:
Microsoft VBScript runtime (0x800A01B6)
Object doesn't support this property or method: 'CodePage'
My code is as follows:
-
Set mySmartUpload = Server.CreateObject("aspSmartUpload.SmartUpload")
-
mySmartUpload.CodePage = "UTF-8"
-
mySmartUpload.Upload
-
I also have the encoding set in the meta tags as mentioned in other ASPSmartUpload FAQ's:
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
Is there something I need to do to enable this property?
I'd like to use this object if at all possible since that's what we have currently but if it's not possible to get this working, is there another object someone might suggest I could try?
Thank you!