vote up 1 vote down star
1

I have a page that contains a form. This page is served with content type text/html;charset=utf-8. I need to submit this form to server using ISO-8859-1 character encoding. Is this possible with Internet Explorer?

Setting accept-charset attribute to form element, like this, works for Firefox, Opera etc. but not for IE.

<form accept-charset="ISO-8859-1">
  ...
</form>

Edit: This form is created by server A and will be submitted to server B. I have no control over server B.

If I set server A to serve content with charset ISO-8859-1 everything works, but I am looking a way to make this work without changes to server A's encoding. I have another question about setting the encoding in server A.

flag

8 Answers

vote up 1 vote down

If you have any access to the server at all, convert its processing to UTF-8. The art of submitting non-UTF-8 forms is a long and sorry story; this document about forms and i18n may be of interest. I understand you do not seem to care about international support; you can always convert the UTF-8 data to html entities to make sure it stays Latin-1.

link|flag
I do care a lot about international support, and I'd like to keep my app in UTF-8 world, but this single page needs to be submitted in iso-8859-1 to external server. – Juha Syrjälä Nov 21 '08 at 15:32
vote up 1 vote down check

It seems that this can't be done, not at least with current versions of IE (6 and 7).

IE supports form attribute accept-charset, but only if its value is 'utf-8'.

The solution is to modify server A to produce encoding 'ISO-8859-1' for page that contains the form.

link|flag
vote up 0 vote down

I am pretty sure it won't be possible with older versions of IE. Before the accept-charset attribute was devised, there was no way for form elements to specify which character encoding they accepted, and the best that browsers could do is assume the encoding of the page the form is in will do.

It is a bit sad that you need to know which encoding was used -- nowadays we would expect our web frameworks to take care of such details invisibly and expose the text data to the application as Unicode strings, already decoded...

link|flag
vote up 0 vote down

Looks like Microsoft knows accept-charset, but their doc doesn't tell for which version it starts to work...
You don't tell either in which versions of browser you tested it.

link|flag
vote up 0 vote down

I seem to remember that Internet Explorer gets confused if the accept-charset encoding doesn't match the encoding specified in the content-type header. In your example, you claim the document is sent as UTF-8, but want form submits in ISO-8859-1. Try matching those and see if that solves your problem.

link|flag
I have a similar problem. The application serves the response as utf-8 and in the form it is specified accept-charset="utf-8" but with IE8 it retrieves the values with wrong format. What is the best configuration to work with forms with Internet Explorer? Thanks. – David García González Jun 22 at 12:30
vote up 0 vote down

link|flag
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> – turbopack Jul 31 at 17:31
vote up 0 vote down

There is a simple hack to this:

Insert a hidden input field in the form with an entity which only occur in the character set the server your posting (or doing a GET) to accepts.

Example: If the form are located on a server serving ISO-8859-1 and the form will post to a server expecting UTF-8 insert something like this in the form:

IE will then "detect" that the form contains a UTF-8 character and use UFT-8 when you POST or GET. Strange, but it does work.

link|flag
vote up 0 vote down

I've experimented the hack suggested by Trygve Lie inserting the following input field:

<input type="hidden" name="cod_hack" value="&#153;">

and it works! Great! This allows me not to move all the site from latin-1 to utf-8. Thanks.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.