Using - href="blank.jsp?blank
Hi, I have in my code the following line:
href="CruiseDetails.jsp?cabin_id=cabinE105&cruise_id=1
I want to send the cruise_id to the CruiseDetails.jsp based on a variable and not have it hard coded like above.
At the top of the page(CabinReservation.jsp) I am taking the cruise_id in:
String cruiseID = request.getParameter("cruise_id");
So I tried something like this but it doesnt work . . .
href="CruiseDetails.jsp?cabin_id=cabinE105&CruiseID
Any ideas? I would appriciate any help . . . thank you!!

