В настоящее время я работаю над интернет-магазином, где страница магазина представляет собой файл jsp.Затем информация передается сервлету и отображается в другом файле JSP.У меня сколько предметов осталось на сервлете.
Как сделать так, чтобы при загрузке страницы в первом файле jsp оставалось количество элементов?
Это мой первый файл jsp:
<html>
<form action="ProcessInfo" method="post">
<label>First Name : </label>
<input type="text" name="fname"><br><br>
<label>Last Name : </label>
<input type="text" name="lname"><br><br>
<label>Contact Info : </label>
<input type="text" name="Contact_Info" value="IG,SC,etc"><br><br>
<label>M&M $1 per </label>
<input type="text" id ="MM" name="MM" value="0" ><br><br>
<label>Skittles $1 per </label>
<input type="text" id="Skittles" name="Skittles" value="0" ><br><br>
</div>
<input type="submit" value="Send">
</form>
Это мой сервлет:
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
String url ="/DisplayInfo.jsp";
String MM = request.getParameter("MM");
String Skittles = request.getParameter("Skittles");
String Contact_Info = request.getParameter("Contact_Info");
//I create a customer object here called customer
request.setAttribute("customer", customer);
getServletContext().getRequestDispatcher(url).forward(request, response);
}
Это мой JSP, который отображает информацию
<html>
<label>Name:</label>
${cust.getfName()}<br>
<label>Meeting Location:</label>
${cust.getMeeting_Location()}<br>
<label>Contact Information:</label>
${cust.getContact_Info()}<br>
</html>