求助
在做JSP网页时遇到这种情况:在index.jsp中表单如下
<form method="post" action="putong/zhandian.jsp">
<input type="text" name="zdname" />
<input type="submit" name="Submit" value="点击查询" />
</form>
在zhandian.jsp中有以下语句:
String B=request.getParameter("zdname");
当在index.jsp中输入汉字时在zhandian.jsp中无法获取所要传递的值,而输入数字则可以传递,真是怪事了,试了很多次都不成功,我也不记得String不能放汉字呀!到底是怎么回事??求救呀……