utf 8 - asp encoding in upload -
i have upload script messing encoding.
my form page has
<!doctype html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8">
and form is
<form method='post' id='add_bula' name='add_bula' enctype='multipart/form-data' acceptcharset='utf-8' action='upload/file.asp'>
any ideia why "�" when use char "Ç" or "ã" example?
the page value defined as
<%@language="vbscript" codepage="65001"%> <% session.lcid = 2070 response.contenttype = "text/html" response.addheader "content-type", "text/html;charset=utf-8" response.codepage = 65001 response.charset = "utf-8" %> <!doctype html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> </head> <body>
both pages formated "encoding in utf-8 without boom"
any ideia how fix this?
thanks in advance
Comments
Post a Comment