I m developing module in my eclipse IDE,
I have designed a web page using JSP and Hibernate concepts where in i have to enter required details and after clicking on submit button they are directly entered into database. this part is done successfully
but the only problem is when m trying to get back to my original page it shows error message as:
The requested resource (/abs.jsp) is not available.

Where as i have already declared required functions for returning back from the page. I m not understanding the error.
I will be glad if someone help me.
thanks in advance.

Recommended Answers

All 2 Replies

check the redirection code weather you have given the correct URL

response.sendRedirect("../abs.jsp");

here the .. means the path will be taken from the root directory.

Thanks i got it. I had renamed my jsp page that's why it wasn't redirecting it.

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.