关于jsp指令标签include包含jsp文件时中文不能正常显示!!
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时,中文不能正常显示,想问下如何才能正常显示?
搜索更多相关主题的帖子:
include jsp 指令 form
----------------解决方案--------------------------------------------------------
<%@page contentType="text/html;charset=gbk"%><form>
好友:<input type="text">
名单:<input type="text">
</form>
----------------解决方案--------------------------------------------------------
谢了!!
----------------解决方案--------------------------------------------------------