日期:2014-05-17  浏览次数:20816 次

为什么request.getparamer()会显示null的??代码以下:

<%@ page contentType="text/html" pageEncoding="GBK"%>
<html>
<head><title>login</title></head>
<body>
<form action="welcome.jsp" method="post">
用户名:<input type="text" name="uname" value="show"/><br />
密  码:<input type="text" name="pass"/><br />
<input type="submit" value="提交"/><input type="reset" value="重置"/><br />
</form>
<%=request.getParameter("uname")%>
</body>
</html>


------解决方案--------------------
同一个页面还没有请求呢,哪里来的数据
------解决方案--------------------
因为 你还没跳呢
------解决方案--------------------
没提交表单,不会有值。。。
------解决方案--------------------
request.getParamter("");这个是获取表单输入数据的,但是你得表单都还没有提交如何获取呢,但是如果该页面本来就是welcome.jsp的话,是可以获取的到的,祝lz好运!!!!