Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

What is the corrext syntax for session.getAttribute? I am having an error pop up for add for both of these lines. Is there something im

What is the corrext syntax for session.getAttribute? I am having an error pop up for "add" for both of these lines. Is there something im missing?

protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

HttpSession session = request.getSession();

int FilmID = Integer.parseInt(request.getParameter("film_id"));

int price = 1;

//session.setAttribute("film",Cart);

session.setAttribute("price", price);

session.getAttribute("cart").add(price);

cart.add(FilmID); // adds the film to the cart associated with the session.

session.getAttribute("cart").add(FilmID); // adds the film to the cart associated with the session.

request.getRequestDispatcher("ShoppingCart.jsp").forward(request, response);

}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Processing

Authors: David M. Kroenke, David Auer

11th Edition

B003Y7CIBU, 978-0132302678

More Books

Students also viewed these Databases questions

Question

What is the most important part of any HCM Project Map and why?

Answered: 1 week ago