主题:新手求助(关于表单信息)
本人刚开始学习JSP,遇到一个表单信息传输问题!请高手不吝赐教!
text.jsp代码如下:
<html>
<body>
<form action="login.jsp">
姓 名:<input type="text" name="userID" size=10>
<br>
密 码:<input type="password" name="password" size=10>
<br>
<input type="submit",value="完成">
</form>
</body>
</html>
login.jsp代码如下:
<html>
<body>
<%
String userID=request.getParameter("userID");
if(userID==null)
out.println("姓名不能为空!");
%>
姓名:<%=userID%>
</body>
</html>
以上均为JSP主要代码!
我想问的是:当文本框中输入为空时,为什么不出现提示"姓名不能为空"
而显示为:
姓 名:
text.jsp代码如下:
<html>
<body>
<form action="login.jsp">
姓 名:<input type="text" name="userID" size=10>
<br>
密 码:<input type="password" name="password" size=10>
<br>
<input type="submit",value="完成">
</form>
</body>
</html>
login.jsp代码如下:
<html>
<body>
<%
String userID=request.getParameter("userID");
if(userID==null)
out.println("姓名不能为空!");
%>
姓名:<%=userID%>
</body>
</html>
以上均为JSP主要代码!
我想问的是:当文本框中输入为空时,为什么不出现提示"姓名不能为空"
而显示为:
姓 名: