I have a problem with Spanish characters in a classic asp site. The user can submit their name / address in the form on the aspx page. Then the aspx page makes an ajax message on the classic asp page, everything that it does is stored in our Sql 2008 DB. I see in the database that the character is not saved correctly. For example, the first name looks like Mรยช , where Mยช should be.
When I then read this data and show it in the text box, it still displays Mรยช .
things i tried:
<%@ Language=VBScript codepage=65001 %> <% Response.Charset="UTF-8" %>- encoding file as UTF-8 (using notepad ++)
any other ideas? Do I need to go back to the database and correct the characters first, or can this be done when I read the characters and show them?
source share