What are the different ways of passing from one jsp page to another jsp page?Please help with examples.i want to pass either request of parameter.please help
chun wang
Greenhorn
Joined: Oct 31, 2008
Posts: 1
posted
0
<form action="test.jsp">
try it again
<input type="submit" name="submit" value="submit"/>
</form>
try it again
<input type="submit" name="submit" value="submit"/>
</form>
Add a form element (text box) say "textBoxName" as text box name and submit to test.jsp. This passes the text box value as request parameter to submitted JSP. In test.jsp use EL ${param.textBoxName} to get the text box value.