can please tell me if i can post i question here on the same topice with some difference...
if yes, please read the below mentioned ..
my first.jsp
<HTML>
<BODY>
<FORM METHOD=POST ACTION="SaveName.jsp">
What's your name? <INPUT TYPE=TEXT NAME=username SIZE=20>
<P><INPUT TYPE=SUBMIT>
</FORM>
</BODY>
</HTML>
this is my second jsp called savename.jsp
<%
String name = request.getParameter( "username" );
session.setAttribute( "theName", name );
%>
<HTML>
<BODY>
<FORM METHOD="LINK" ACTION="first.jsp">
<INPUT TYPE="submit" VALUE="Clickable Button">
</FORM>
<A HREF="NextPage.jsp">Continue</A>
</BODY>
</HTML>
this is my thirs jsp
<HTML>
<BODY>
<FORM METHOD="LINK" ACTION="SaveName.jsp">
<INPUT TYPE="submit" VALUE="Clickable Button">
</FORM>
Hello, <%= session.getAttribute( "theName" ) %>
</BODY>
</HTML>
even though i put my values in session, when i go back to first jsp using back buttons , the value entered there is not show. please help me.
regards,
rahul