Encoding Issue:
i am using IE7 to view my JSP pages. in my jsp pages i am using the following,
<% response.setContentType("application/xhtml+xml"); %>
The page renders fine but some characters are unreadable, for example the copyright but if i use the following,
<% response.setContentType("application/xhtml+xml;charset=utf-8"); %>
All characters render perfectly fine but the page is displayed at XML (xml tree is displayed).
Can anyone shed some light on this/
|