【JSP基础】request.getParameter为何没有获得<form>提交的值
【example31.jsp】<%@pagecontentType="text/html;charset=GB2312"%><html><body><formaction...
【example31.jsp】
<%@ page contentType="text/html; charset=GB2312" %>
<html><body>
<form action="computer.jsp" method=post>
<Input type = "text" name ="sizeA" value = 1>
<Input type = "submit" value = "submit">
</form>
</body></html>
【computer.jsp】
<%@ page contentType="text/html; charset=GB2312" %>
<html><body>
<% String sideA=request.getParameter("sideA");
out.println("<BR>yes"+ sideA);
%>
</body></html>
打开【example31.jsp】,点submit,跳转到【computer.jsp】,结果却是yesnull....
我是用eclipse调用tomcat,这两个jsp文件都放在WebContent下面 展开
<%@ page contentType="text/html; charset=GB2312" %>
<html><body>
<form action="computer.jsp" method=post>
<Input type = "text" name ="sizeA" value = 1>
<Input type = "submit" value = "submit">
</form>
</body></html>
【computer.jsp】
<%@ page contentType="text/html; charset=GB2312" %>
<html><body>
<% String sideA=request.getParameter("sideA");
out.println("<BR>yes"+ sideA);
%>
</body></html>
打开【example31.jsp】,点submit,跳转到【computer.jsp】,结果却是yesnull....
我是用eclipse调用tomcat,这两个jsp文件都放在WebContent下面 展开
3个回答
展开全部
在computer.jspbody标签内添加<% request.setCharacterEncoding("GBK");%>。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
路径不对吧 我猜的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
sideA
sizeA 注意看你的单词。
sizeA 注意看你的单词。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询