I am also new to struts.
I used to display data from Database in the same page(in servlet/jsp) on click of a submit button like this :
info.jsp
............................................
1)The first time the info.jsp page is called info is null.Hence dont show info.
2)When the button is clicked
servlet is called. the servlet gets the data from the database and then forward the data to the info.jsp page, setting info as attribute.
Now in the info.jsp info is not null. displaying the result.
I want to know is this the right approach to display data in the same page?
And now i want to do it in the same process in struts.