Hello All,
Let say I want to pass the DOB of an employee from a servlet to a jsp page. In the servlet I have a query like this:
sql = "Select DOB from Emp where name = " + request.getParameter("name")
I got DOB = '12/1/1970'
Now I want to display this DOB in my jsp page, how do I do that?
Thanks.
Let say I want to pass the DOB of an employee from a servlet to a jsp page. In the servlet I have a query like this:
sql = "Select DOB from Emp where name = " + request.getParameter("name")
I got DOB = '12/1/1970'
Now I want to display this DOB in my jsp page, how do I do that?
Thanks.