jsp层中包含另外一个jsp页面出现乱码
我2个jsp页面单独显示都没有问题,可是这个页面的一个层把另外一个jsp页面包含进来就乱码!!!!哪位大哥大姐,可以告诉我么??怎么解决。。。。。。。。。。。。哪位帮帮我呀!!!!!!
<%! String trans(String chi) { String result = null; byte temp []; try { temp=chi.getBytes("gb2312"); result = new String(temp); } catch( e) { System.out.println (e.toString()); } return result; } String trans(Object chi) { return trans(chi.toString()); } %>