Difference between revisions of "Talk:CharsetEncoding"

From MPDLMediaWiki
Jump to navigation Jump to search
m (New page: === HTML === Currently the charset encoding is handed over in HTTP header: <code> <jsp:directive.page pageEncoding="UTF-8" /> </code> Some pages come with encoding handed over in the html...)
 
m
Line 1: Line 1:
=== HTML ===
=== HTML ===
Currently the charset encoding is handed over in HTTP header:
Currently the charset encoding is handed over in HTTP header:
<code>
<code>
<jsp:directive.page pageEncoding="UTF-8" />
<jsp:directive.page pageEncoding="UTF-8" />
Line 6: Line 7:


Some pages come with encoding handed over in the html head:
Some pages come with encoding handed over in the html head:
<code>
<head>
<head>
<title>eSciDoc - Login page</title>
<title>eSciDoc - Login page</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
</head>
</code>

Revision as of 09:13, 27 October 2009

HTML[edit]

Currently the charset encoding is handed over in HTTP header:

<jsp:directive.page pageEncoding="UTF-8" />

Some pages come with encoding handed over in the html head:

<head> <title>eSciDoc - Login page</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head>