我正在尝试从一个JSP页面移动到另一个JSP页面,但在用户点击名称和密码后,它只是保持同一页面。这是完整的代码:
这是index.jsp:我是从这个页面开始的
<%@ page language="java" contentType="text/html; charset=windows-1255"
pageEncoding="windows-1255"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1255">
<title>Insert title here</title>
</head>
<body>
<form action="LoginServlet" method="POST">
First Name: <input type="text" name="firstName" size="20"><br>
Last Name: <input type="text" name="lastName" size="20">
<br><br>
<input type="submit" value="Submit">
</form>
</body>
</html>
这是student.jsp:我想转到此页面
<%@ page contentType="text/html; charset=utf-8" language="java"%>
<jsp:useBean id="userBean" class="UserBean" scope="session" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" type="text/css" href="css/style2.css" />
<title>Student Access Details</title>
</head>
<body>
<table>
<tr>
<td rowspan="4" class="align_top"><img src="img/photo.jpg" width="120" height="120" /></td>
<td class="align_top">Student name: </td>
<td class="bold"><%= userBean.getFirstName() %> <%= userBean.getLastName() %></td>
</tr>
<tr>
<td class="align_top">University ID: </td>
<td><%= userBean.getUid() %></td>
</tr>
<tr>
<td class="align_top">Address: </td>
<td><%= userBean.getAddress1() %><br />
<%if(userBean.getAddress2() != null)
{%>
<%= userBean.getAddress2() %><br /><%}%>
<%= userBean.getCity() %><br />
<%= userBean.getPostCode() %><br />
</td>
</tr>
<tr>
<td class="align_top">Contact: </td>
<td>Tel: <%= userBean.getPhone() %><br />
Email: <%= userBean.getEmail() %>
</td>
</tr>
</table>
</body>
</html>
我正在使用Tomcat ,JDBC , XAMPP and MySQL
。
当我从浏览器中运行此行时:http://localhost:8080/MyFirstServlet
我进入此页面,然后点击了homer
&amp; simpson
:
然后我就停留在同一页面,这里:
知道我做错了什么吗?谢谢!
答案 0 :(得分:1)
您的验证(...)方法将始终返回false为homer&amp; simpson,尝试其他用户名/密码
答案 1 :(得分:0)
在HTML表单的HTML代码操作参数中使用适当的操作,以便表单提交到哪里
而不是更改动作参数值并尝试
<form action="LoginServlet" method="POST">
使用此
<form action="student.jsp" method="POST">