主题:紧急求助!!!!
小弟刚学JSP刚写了点东西,但发现不能传递中文
1.html:
<html>
<body>
<form action="1.jsp" method="post">
姓名:<input type="TEXT" name="t1"><br>
<input type="submit" name="提交">
<input type="reset" name="reset">
</form>
</body>
</html>
1.jsp:
<%@ page contentType="text/html;charset =GBK"%>
<%
request.setCharacterEncoding("GBK");
String a=request.getParameter("t1");
%>
用户名:
<%=a%><br>
1.html:
<html>
<body>
<form action="1.jsp" method="post">
姓名:<input type="TEXT" name="t1"><br>
<input type="submit" name="提交">
<input type="reset" name="reset">
</form>
</body>
</html>
1.jsp:
<%@ page contentType="text/html;charset =GBK"%>
<%
request.setCharacterEncoding("GBK");
String a=request.getParameter("t1");
%>
用户名:
<%=a%><br>