friends,
i am doing a simple spring-hibernate application. i m using simple form controller. here i'm getting values from my DB.
my aim is to print these values into a jsp.
it is possible for me to print in another jsp
{
...
myModel.put("search",sresult);
return new ModelAndView("hello","model",myModel);
}
but unfortunatenly unable to print into that same page from where i passed my query?
hope for a good result


Reply With Quote