练习要求:
1.编写登录页面(userLogin.jsp),表单包含字段:用
户名和密码。
2.提交表单到loginSuccess.jsp页面,并在该页面中显示
提交的用户名和密码。
index.jsp代码:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>登陆界面</title>
</head>
<body>
<form action="/web02/login1.jsp" method="get">
用户名称:<input type="text" name="cu_name"><br />
用户电话:<input type="text" name="cu_phone"><br />
<input type="submit" value="登陆">
</form>
</body>
</html>
login.jsp代码:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@page import="java.util.Arrays" %>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>接收登陆页面传来的数据</title>
<%
//从index.jsp页面传来的数据,用request接收
String cu_name=request.getParameter("cu_name");//前台页面传递过来的无论是key还是value都是String类型
String cu_phone=request.getParameter("cu_phone");
%>
</head>
<body>
你提交的用户名称是:<%=cu_name %><br />
你提交的用户电话是:<%=cu_phone %><br />
</body>
</html>
结果: