How can i convert the following code into JSP. I tried "${}" and <%= on the last line to get the customer Id but no success.
out.println("<td>");
out.println("<form action=\"week05_portfolio_servlet\" method=\"post\">");
out.println("<input type=\"submit\" value=\"View\">");
out.println("<input type=\"hidden\" name=\"command\" value=\"viewVehicles\">");
out.println("<input type=\"hidden\" name=\"customerId\" value=\"" + cust.getId() + "\">");