注册 登录
编程论坛 J2EE论坛

关于jsp指令标签include包含jsp文件时中文不能正常显示!!

george_vcool 发布于 2007-11-03 19:26, 907 次点击
3.jsp
<%@page contentType="text/html;charset=gbk"%>
<html>
<body>
<form>
<input type="text">
<%@include file="2.jsp" %>
</form>
</body>
</html>

2.jsp
<form>
好友:<input type="text">
名单:<input type="text">
</form>

访问3.jsp时,中文不能正常显示,想问下如何才能正常显示?
2 回复
#2
csight2007-11-03 22:32
<%@page contentType="text/html;charset=gbk"%><form>
好友:<input type="text">
名单:<input type="text">
</form>
#3
george_vcool2007-11-03 22:56

谢了!!

1