Problem with accentuation in IIS 10 (Windows 10) using classic ASP [closed]

3

I did several searches 2 days ago and tried everything but I could not solve the problem, which is as follows:

I've enabled IIS on Windows 10 64-bit home to use local pages in classic ASP. So much beauty working fine, but I realized that by sending a text with accentuation through a POST in a form and capturing it by a REQUEST , where it has an accent it returns strange characters, as if the server does not recognize accents.

For example: the word " chapter " comes in REQUEST as "caption", and in the MySQL database it is written as "caption". If I put the QUERY direct in the URL (Ex.? Name = chapter), the REQUEST returns wrong also "chapter" but writes correctly in the database.

I am a little inexperienced in this and have already fucked everything and could not solve. Would anyone know how to fix this?

    
asked by anonymous 27.12.2015 / 00:18

1 answer

0

Thanks for the help but I managed to solve it. The problem was not in the server configuration. It was include that was without charset , and therefore "messing" the rest of the page.

    
27.12.2015 / 20:09