编写程序实现登录功能,请完成以下步骤(1) 编写JSP页面exercise_01实现用户登录,包含用户名和密码。 (2) 编写JSP页面exercise 02获取用户登录信息,如果用户名为xiaoming,密码为12345,则返回“登录成功”,否则,返回“登录失败”。
时间: 2024-02-11 08:09:46 浏览: 98
1. 编写JSP页面exercise_01实现用户登录
```html
<!DOCTYPE html>
<html>
<head>
<title>用户登录</title>
</head>
<body>
<h2>用户登录</h2>
<form action="exercise_02.jsp" method="post">
<label for="username">用户名:</label>
<input type="text" name="username" id="username"><br><br>
<label for="password">密码:</label>
<input type="password" name="password" id="password"><br><br>
<input type="submit" value="登录">
</form>
</body>
</html>
```
2. 编写JSP页面exercise_02获取用户登录信息,如果用户名为xiaoming,密码为12345,则返回“登录成功”,否则,返回“登录失败”。
```html
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%
String username = request.getParameter("username");
String password = request.getParameter("password");
if(username.equals("xiaoming") && password.equals("12345")) {
%>
<h2>登录成功</h2>
<%
} else {
%>
<h2>登录失败</h2>
<%
}
%>
```
在以上代码中,使用了JSP内置对象request获取表单提交的参数,然后判断用户名和密码是否正确,如果正确则输出登录成功的信息,否则输出登录失败的信息。
阅读全文