Re: problem with page contentType of jsp
Posted By:
Serhiy_Brytskyy
Posted On:
Friday, September 3, 2004 08:03 AM
Put at the first line of jsp:
<%
String encoding = PropertyHandler.HagetProperty("site.local.web.charset.encoding");
((HttpServletResponse)response).setContentType("text/html; charset=" + encoding);
%>
where PropertyHandler is some class, which can read property.