Link to home
Start Free TrialLog in
Avatar of Juuno
Juuno

asked on

Problem: remember the value which is inputted

I have two jsp files. The first jsp accept user input in form and then it calls the second jsp using Form action. And in the second JSP, it passes those two inputs to my Java Bean program, and then accept the output again from java bean and show the result using jstl.

In that case, I accept two inputs but it's opitonal. So, whether entering both two text boxes or either one of it is optional. The problem is say: if the user input in the first text box in the first time and then click the button. It will go to next page and show the result(what my java bean do). And then click the 'Back' button to go to the first page and in this time, if the user input only the second text box, but when passing the value, it also includes the value of the first text box which I have entered in first time.

It used to happen. So, I always have to restart Tomcat server and run the program again to avoid that problem. If not, it happnes like that.

So, how can I do my JSP not to keep the value input when I click 'Back' button.  Here's my two JSP prograsm.

Thanks!!
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <link href="wixIndex.css" rel="stylesheet" type="text/css">
        <title>Web Index</title>
    </head>
    <body>
 
		<%@ include file="header.html" %>
 
        <form name="Name Input Form" action="search-result.jsp">
        	<br> &nbsp;
            <font color="0066CC" size="2"><b>KEYWORD</b></font>  
            &nbsp; &nbsp;
            <input type="text" name="keyword" size="80"/>
            <br><br> &nbsp;
            <font color="0066CC" size="2"><b>CONTENT</b></font>  
            &nbsp; &nbsp;
            <input type="text" name="kwinfo" size="80"/>
            <br><br>
 
            <input type="submit" value="SEARCH" class="button"/>
            <br><br>
 
        </form>
 
    </body>
</html>
 
--------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------
 
<%-- 
    Document   : response
    Created on : Apr 9, 2009, 1:39:16 AM
    Author     : May
--%>
 
<%@ taglib prefix="fm" uri="/WEB-INF/matcher.tld"%>
 
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
 
<jsp:useBean id="matcher" scope="session" class="com.webIndex.match.FindMatch"/>
 
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <link href="wixIndex.css" rel="stylesheet" type="text/css">
        <title>Web Index</title>
    </head>
    
	<body>
	
		<%@ include file="header.html" %>
		
	   	<jsp:setProperty name="matcher" property="*" />  
	
		${fm:funMatcher(matcher, matcher.keyword, matcher.kwinfo)}
    	
	</body>
</html>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Murali Murugesan
Murali Murugesan
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial