Response.LCID = 1055
Response.Codepage = 65001
Response.Charset = "utf-8"
knm = "ışöçü"
sss = "asd"
enc = AESEncyptString(knm,sss)
dec = AESDecyptString(enc,sss)
response.write(dec)
Results = ?????
I tried it with Base64.
knm = Base64encode("ışöçü")
sss = "asd"
enc = AESEncyptString(knm,sss)
dec = AESDecyptString(enc,sss)
response.write(Base64decode(dec))
Results = isocu
Turkish characters appear as "???". I tried it with Base64, but it didn't happen again.I'm trying to encrypt with Rijdnael AES. How can i solve this problem? (Sorry, I hope I told you right. My English is not very good. :))