码迷,mamicode.com
首页 > Web开发 > 详细

jsp查询页面和结果页面在同一页面显示和交互

时间:2015-08-30 22:53:11      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:

用frameset实现查询页面和结果页面在同一页面

用target实现交互显示在同一页面上

请参照以下方法解决:

main.jsp:
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=GBK">
 <title>Insert title here</title>
 </head>
 <body>
 <frame>
 <iframe name="query" src="query.jsp"></iframe>
 <iframe name="list"></iframe>
 </frame>
 </body>
 </html>

 query.jsp:
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <title>Insert title here</title>
 </head>
 <body>
 <form action="list.jsp" method="post" target="list">
 <input type="text" name="theName">
 <input type="submit" value="Submit">
 </form>
 </body>
 </html>


 list.jsp:
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <title>Insert title here</title>
 </head>
 <body>
 <%String result=request.getParameter("theName"); %>
 <%=result %>
 </body>
 </html> 

 

jsp查询页面和结果页面在同一页面显示和交互

标签:

原文地址:http://www.cnblogs.com/zzlp/p/4771681.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!