| Author |
Calling jsp from servlet
|
Shanthi Surendar
Greenhorn
Joined: Mar 23, 2012
Posts: 1
|
|
I am calling a jsp page from servlet using out.println("<html><script>var url='/print.jsp'; window.showmodaldialog(url); </html>") statement.
I am able to call the jsp page without any error.
But after consecutive calls (around 100 times), the jsp page does not get loaded properly. I get a blank page with '#' in the body and "--" in the title.
I am not able to figure out what and where the problem could be.
Could you please assisst me in this?
|
 |
Eshwin Sukhdeve
Ranch Hand
Joined: Mar 15, 2012
Posts: 78
|
|
the way which you are following I have no idea about that.but jeneraly when we call jasp from servlet.we use
this
getServletContext().getRequestDispatcher("/print.jsp").forward(request, response);
try with this..
|
 |
 |
|
|
subject: Calling jsp from servlet
|
|
|