在Jsp一个页面中 写一个文本框和确定按钮 当点击确定后在另一个页面显示文本框中输入的内容 该怎么写啊?
在Jsp一个页面中写一个文本框和确定按钮当点击确定后在另一个页面显示文本框中输入的内容该怎么写啊??急。。。。。。。。。。。在线等重赏!!比如在第一个jsp页面的文本框中...
在Jsp一个页面中 写一个文本框和确定按钮 当点击确定后在另一个页面显示文本框中输入的内容 该怎么写啊??急。。。。。。。。。。。在线等 重赏!!
比如在第一个jsp页面的文本框中写如张三 点击确定后 在第二个页面显示张三 展开
比如在第一个jsp页面的文本框中写如张三 点击确定后 在第二个页面显示张三 展开
2015-12-13 · 做真实的自己 用良心做教育
千锋教育
千锋教育专注HTML5大前端、JavaEE、Python、人工智能、UI&UE、云计算、全栈软件测试、大数据、物联网+嵌入式、Unity游戏开发、网络安全、互联网营销、Go语言等培训教育。
向TA提问
关注
展开全部
这个是是从A页面传值到B页面的一个问题,如果是采用js跳转,那么直接在url中包含输入的文本,在第二个页面接收就可以了。
JSP页面间传递参数是经常需要使用到的功能,有时还需要多个JSP页面间传递参数。
1)直接在URL请求后添加
如:< a href="thexuan.jsp?action=transparams&detail=directe">直接传递参数< /a>
特别的在使用response.sendRedirect做页面转向的时候,也可以用如下代码:
response.sendRedirect("thexuan.jsp?action=transparams&detail=directe") ,可用request.getParameter(name)取得参数
(2)jsp:param
使用jsp:forward动作做页面跳转时传递参数,如下:
< jsp:forward page="Relative URL">
< jsp:param name="paramname" value="paramvalue" />
(3)设置session和request
通过显示的把参数放置到session和request中,以达到传递参数的目的
session.setAttribute(name,value); request.setAttribute(name,value)
取参数:
value=(value className)session.getAttribute(name); value=(value className)request.getAttribute(name);
JSP页面间传递参数是经常需要使用到的功能,有时还需要多个JSP页面间传递参数。
1)直接在URL请求后添加
如:< a href="thexuan.jsp?action=transparams&detail=directe">直接传递参数< /a>
特别的在使用response.sendRedirect做页面转向的时候,也可以用如下代码:
response.sendRedirect("thexuan.jsp?action=transparams&detail=directe") ,可用request.getParameter(name)取得参数
(2)jsp:param
使用jsp:forward动作做页面跳转时传递参数,如下:
< jsp:forward page="Relative URL">
< jsp:param name="paramname" value="paramvalue" />
(3)设置session和request
通过显示的把参数放置到session和request中,以达到传递参数的目的
session.setAttribute(name,value); request.setAttribute(name,value)
取参数:
value=(value className)session.getAttribute(name); value=(value className)request.getAttribute(name);
展开全部
这个是往文本框里输入的页面
<%@ page contentType="text/html;charset=GBK" %>
<html>
<body>
<form id="f1" name="f1" method="post" action="show.jsp">
<input type="text" name="username">
<input type="submit" value="确定">
</form>
</body>
</html>
这个是显示的页面
<%@ page contentType="text/html;charset=GBK" %>
<html>
<body>
<%=request.getParameter("username")%>
</body>
</html>
要启动tomcat才能运行
我运行出来啦 可行!
<%@ page contentType="text/html;charset=GBK" %>
<html>
<body>
<form id="f1" name="f1" method="post" action="show.jsp">
<input type="text" name="username">
<input type="submit" value="确定">
</form>
</body>
</html>
这个是显示的页面
<%@ page contentType="text/html;charset=GBK" %>
<html>
<body>
<%=request.getParameter("username")%>
</body>
</html>
要启动tomcat才能运行
我运行出来啦 可行!
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这个是往文本框里输入的页面
<%@ page contentType="text/html;charset=GBK" %>
<html>
<body>
<form id="f1" name="f1" method="post" action="show.jsp">
<input type="text" name="username">
<input type="submit" value="确定">
</form>
</body>
</html>
这个是显示的页面
<%@ page contentType="text/html;charset=GBK" %>
<html>
<body>
<%=request.getParameter("username")%>
</body>
</html>
要启动tomcat才能运行
我运行出来啦 可行!
<%@ page contentType="text/html;charset=GBK" %>
<html>
<body>
<form id="f1" name="f1" method="post" action="show.jsp">
<input type="text" name="username">
<input type="submit" value="确定">
</form>
</body>
</html>
这个是显示的页面
<%@ page contentType="text/html;charset=GBK" %>
<html>
<body>
<%=request.getParameter("username")%>
</body>
</html>
要启动tomcat才能运行
我运行出来啦 可行!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
假设第一个jsp上文本框input的名字是 "name1"
第二个jsp上可以用 value="${param['name1'] }" 取到值
EL语言 可以试试哈
第二个jsp上可以用 value="${param['name1'] }" 取到值
EL语言 可以试试哈
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
第一个页面中
<form action="second.jsp" method ="get">
<input type="text" name =" value"/>
<input type="button" value="按钮"/>
</form>
第二个页面
String value = request.getPatameter("value");
out.println(value);
<form action="second.jsp" method ="get">
<input type="text" name =" value"/>
<input type="button" value="按钮"/>
</form>
第二个页面
String value = request.getPatameter("value");
out.println(value);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询