Categorías
ASP

Forzar la codificación UTF-8 en ASP

Para la utilización de la codificación UTF-8.

Código asp:

Response.ContentType = "text/html"
Response.AddHeader "Content-Type", "text/html;charset=UTF-8"
Response.CodePage = 65001
Response.CharSet = "UTF-8"