Skip to content
Advertisement

passing value to a jsp page from a java class using DAO

I wanted to pass the value retrieved on a java class to a page.I am using DAO classes. I have retrieved the values from the database and stored them on String variables.Now I want to set them to the text boxes in my view.jsp page.I am new to this area,can anyone help me out??

View.jsp is as

JavaScript

and My Activity ViewDAO.java is as

JavaScript

Thanks…

Advertisement

Answer

You need to call the DAO method from your servlet like below:

JavaScript

your DAO method should be like the below:

JavaScript

Hope this will help you.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement