Issue
If any "ID" set with value in Servlet Class then How can i access that value on my jsp page. As i know there are several methods which helps to fetch the value by using Session management but i am tired of do it.
Please help me out.
Thanks in advance.
Solution
From the servlet, set the file name in request context:
request.setAttribute("filename", fileNameStr );
In JSP write:
<%=request.getAttribute("filename")%>
Answered By - rahulmohan
Answer Checked By - Robin (JavaFixing Admin)