JavaWeb-form传值(从一个jsp页面传数据到另一个jsp页面)

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_41690324/article/details/83239751

第一个页面,login.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
	pageEncoding="UTF-8"%>
<%-- 本行代码可以防止乱码出现 --%>
<%
	String path = request.getContextPath();
	String basePath = request.getScheme() + "://"
			+ request.getServerName() + ":" + request.getServerPort()
			+ path + "/";

	
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">

<title>login</title>

<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">

</head>

<body>

<!--传值到"login_action.jsp"  方式是post隐式传递。-->
	<form action="login_action.jsp" method="post">
	用户名:<input type="text" name="username"><br /> 
        密码:<input type="password" name="password"><br /> 
            <input type="submit"  value="登录">

	</form>

</body>
</html>

第二个页面 "login_action.jsp"

<%@ page language="java" contentType="text/html; charset=UTF-8"
	pageEncoding="UTF-8"%>
<%
	String path = request.getContextPath();
	String basePath = request.getScheme() + "://"
			+ request.getServerName() + ":" + request.getServerPort()
			+ path + "/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">

<title>My JSP 'login_action.jsp' starting page</title>

<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
	<link rel="stylesheet" type="text/css" href="styles.css">
	-->

</head>

<body>
    <%--  使用此方法即可获取名为"xxxx"的属性的值 --%>
    用户名:<%=request.getParameter("username")%><br> 
    密码:<%=request.getParameter("password")%>
</body>
</html>

浏览器输入http://localhost:8080/FridayJob/login/login.jsp

得到

可以看到自动跳转到"login_action.jsp"页面

猜你喜欢

转载自blog.csdn.net/qq_41690324/article/details/83239751