Hey guys, currently I am doing on insert products into the database.
For the insert form in jsp, I am making use of hashtable in multi part form so that I can upload images as well as insert data into the database.

I can insert thr details as well as the images into database. But I cannot redirect to another jsp page that have like :Successfully inserted the details.

Can you guys help me on it?

Thanks for your help

:)

Have a look at the request dispatcher.

To implement it the code will look something like this:

RequestDispatcher dispatcher = getServletContext().getRequestDispatcher("/Homepage.jsp");

dispatcher.forward(request, response);
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.