关于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时,中文不能正常显示,想问下如何才能正常显示?