我正在使用一个显示“节日名称”列表的JSP页面。然后,我想链接到一个单击页面,该页面将显示该节日的“个人资料页面”。如何将单击哪个链接发送到JAVA SERVLET,以便可以使用SQL和Java将所选信息发送到“概要文件页面” jsp。
<table border ="1"> <tr> <td>Festival Name:</td> <td>Location:</td> <td>Start Date:</td> <td>End Date:</td> <td>URL:</td> <td>List of Trips to </td> </tr> <c:forEach items="${allFestivals}" var="festival"> <tr> <td>${festival.festivalName}</td> <td>${festival.location}</td> <td>${festival.startDate}</td> <td>${festival.endDate}</td> <td>${festival.URL}</td> <td><a href="festival_profile.jsp">View Your Festivals</a></td> ^i have the festivals ID that can be sent with this link in the jsp </tr> </c:forEach>
我只需要简单地知道如何将所选的“节日” ID发送回servlet,以便它可以生成概要文件JSP。编辑:以及如何在servlet上捕获它
使用链接
<a href="<c:url value="/servletpath"><c:param name="id" value="${festival.id}"/></c:url>">View Your Festivals</a>