4
My page (Header of a table and a modal popup), in accented letters or characters of the Portuguese language, are coming illegible. At the head of the page I have that statement:
<head>
<title><%=Application("app")%></title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<script type="text/javascript" src="../../gen/modal/jquery-ui.min.js"></script>
<script type="text/javascript" src="../../gen/modal/modal.crossbrowser.min.js"></script>
<link rel="stylesheet" type="text/css" href="\gen\css\css002.css">
<link rel="stylesheet" type="text/css" href="\gen\css\css007.css"> <!--cadeia de pagamento -->
<script type="text/javascript" src="\gen\js\tabelafixa.js"></script><!--cadeia de pagamento -->
<script src="../../gen/js/cpaint2.inc.compressed.js" type="text/javascript"></script>
<script type="text/javascript" src="\atb\asp\atb0037.js?<%=now()%>"></script>
<script type="text/javascript" src="\atc\asp\atc0006.js?<%=now()%>"></script>
<script type="text/javascript" src="\cal\asp\cal0087.js?<%=now()%>"></script>
<script type="text/javascript" src="\cal\asp\cal0088.js?<%=now()%>"></script>
<!--INICIO BARRA DE PROGRESSO-->
<script type="text/javascript" src="../../gen/js/waitbar.js"></script>
<link rel="stylesheet" type="text/css" href="\gen\css\progbar.css">
<!--FIM BARRA DE PROGRESSO-->
</head>
In the meta tag I also did it and did not solve:
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
I already passed UTF to UTF and still nothing.
I have a popup calling page and in it I have the includes and meta for characters. The grid(table) is on the same page that calls the popup. see the grid image as it is.

If you change the
charsetforutf-8, works?– Jéf Bueno
I had the same problem, try this: In the call of the script file include the charset="ISO-8859-1" <script type=... charset="ISO-8859-1">
– Zeno