Forward Data Dynamically
I have dynamically generated a list of data into a table using <c:forEach>. Easch data has a hyperlink to another page. My question would be how do I pass the data that I click on to the next page? Every link forward to the same page but with different value.Thank you.
[296 byte] By [
Dream.Kida] at [2007-10-2 18:41:57]

url parameters?yourpage?param1=value1¶m2=value2Then in the receiving page you can retrieve the values again using ${param.param1}, ${param.param2}, etc. http://javaalmanac.com/egs/javax.servlet.jsp.jstl.core/getparam.html