JSP中文處理
發表於 : 2004-04-16 12:43:47
1.在Modules的Open Any Page事件加上
%>
<%@page contentType="text/html; charset=big5" %>
<%
2.在每一個Record Form的Before Execute事件加上
sSQL = new String(sSQL.getBytes("ISO-8859-1"), "Big5");
以上的設定測試環境是在Tomcat 4.0.4上
若是使用
resin-ee-2.1.2
則第二個事件不需要做..
%>
<%@page contentType="text/html; charset=big5" %>
<%
2.在每一個Record Form的Before Execute事件加上
sSQL = new String(sSQL.getBytes("ISO-8859-1"), "Big5");
以上的設定測試環境是在Tomcat 4.0.4上
若是使用
resin-ee-2.1.2
則第二個事件不需要做..