[求助]include 命令传参中文问题
[求助]include 命令传参中文问题
我用include 命令传参,出现乱码问题。请各位兄弟帮忙解决。如何才能支持中文传参啊!
<%@page contentType="text/html;charset=gb2312"%>
<html>
<body>
<% String ok="你好";%>
<h1>
<jsp:include page="2.jsp">
<jsp:param name="b" value="<%=ok%>"/>
</jsp:include>
</h1>
</body>
</html>
2.jsp在这里
<%@ page contentType="text/html;charset=gb2312"%>
<%=request.getParameter("b")%>