我想将用户登录信息保存到某个变量并通过 HTTP 发布请求将其发送到其他登录页面(新登录页面在 Grails/Groovy 中)并将这些保存的用户信息粘贴到该页面。希望我说清楚了,在这里是我用jsp写的代码。任何建议都会有所帮助
<html>
<head>
<title>Enter your name and password</title>
</head>
<body>
<form method="POST" action="loginaction.jsp">
<p><font color="#800000" size="5">First Name:</font><input type="text" name="fname" size="20"></p>
<p><font color="#800000" size="5">Last Name:</font><input type="text" name="lname" size="20"></p>
<p><font color="#800000" size="5">City:</font><input type="text" name="city" size="20"></p>
<p><font color="#800000" size="5">policy Number:</font><input type="text" name="pnum" size="20"></p>
<p><input type="submit" value="Submit" name="B1"></p>
</form>
</body>
</html>
登录操作.jsp
<html>
<body>
<p><%=request.getParameter("fnamename")
request.getParameter("lname")
request.getParameter("city")
request.getParameter("pnum")%></p>
</body>
</html>