Form and special characters
Allright, i have built a form that send information via email using asp.
I use 'system.useCodepage = true;'
First a get the information for the form via xml, UTF-8 encoding to get special characters like éàë etc...
No problem here, it work fine.
// - - - - - -
When i click send, i send all the variable to an asp page.
In the asp page, i use for exemple:
Name = Request.Form("aName")
It work's fine and send me an email with Name and it's value using a email sender script.
When i check my email, i see weirds charachter that replace the 'éàëê etc..'. Instead of getting for exemple:
Éàüèêç, i get ©Ã©Ã©Ã !
What should i do the get the right data in my mailbox. Is it a asp or flash problem ?
Have any idea, please share.
|