、编写一个JSP页面,在表单中输入用户名和密码,按下提交按扭后,在另一页面显示提交的信息 5

 我来答
058vpstyx
2011-07-02 · TA获得超过3013个赞
知道大有可为答主
回答量:4450
采纳率:0%
帮助的人:765万
展开全部
一、定义一个计算的方法,要带参数。方法实现你的需求,也就是说求周长和面积的算法写出来,同时你要实现在一个页面显示,那你方法要返回一个数组或者集合,将周长和面积保存进去
二、在你输入的这个页面中,调用此方法,参数就是你文本框的值,并且保存session中。
三、新建一个页面,将session遍历出来就可以了(或者页面跳转的时候带上参数,直接在新页面获取,也不用session了)
如果是学了struts(因为你提到是javaBean):
首先第一步一样,方法写在action中。同时action获取提交的表单值。方法同样带入你获取的值进行运算。执行成功forward跳转到你想去的页面,显示计算结果
希望可以帮到你
越消逝越美丽
推荐于2018-03-11 · TA获得超过387个赞
知道大有可为答主
回答量:972
采纳率:0%
帮助的人:1483万
展开全部
A页是静态页
<html>
<head>
<title>发表</title>

<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">

<!--<link rel="stylesheet" type="text/css" href="./styles.css">-->

</head>

<body>
<form action="affirm.jsp" method="post">
标题:<input type="text" name="title" /><br/>
内容:<textarea rows="5" cols="20" name="content"></textarea><br/>
<input type="submit" value="提 交" />
</form>
</body>
</html>

B页JSP跳转页
<%@ page language="java" import="java.util.*" pageEncoding="GBK"%>
<%
request.setCharacterEncoding("GBK");
response.setCharacterEncoding("GBK");
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";

String title = request.getParameter("title");
String content = request.getParameter("content");
%>

<html>
<head>
<base href="<%=basePath%>">

<title>确认</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>
<table>
<tr>
<td>标题:</td><td><%=title %></td>
</tr>
<tr>
<td>内容:</td><td><%=content %></td>
</tr>
</table>

<input type="text" value="<%=title %>"/><br/>
<textarea rows="5" cols="20"><%=content %></textarea>
</body>
</html>
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式