2.参考程序request.jsp和response.jsp
请修改为:如果用户名是wp07205015,密码是404040就显示"密码正确",否则显示"用户名或密码错误"
request.jsp
<%@page c%>
<html>
<body>
<form method="post" action="response.jsp">
<p>用户:<input type="text" name="name"></p>
<p>密码:<input type="password" name="password"></p>
<p><input type="submit" name="submit" value="确定"></p>
</form>
</body>
<html>
response.jsp
<%@page c%>
<html>
<body>
<form method="post" action="response.jsp">
<p>用户:<input type="text" name="name"></p>
<p>密码:<input type="password" name="password"></p>
<p><input type="submit" name="submit" value="确定"></p>
</form>
</body>
<html>