hello Is there any way in which we can convert a servlet into a Javabean so that it can be used with a JSP page Eg is there a way in which i can convert a File Upload servlet into a Bean
<I>Chance Favours the Prepared minds"</I>
Shama Khan
Ranch Hand
Joined: Aug 14, 2000
Posts: 185
posted
0
Well, usually we write information from a servlet into a bean. And access the bean from the jsp. I hope that helps. Shama
Shama
Max Rahder
Ranch Hand
Joined: Nov 06, 2000
Posts: 177
posted
0
If you have a servlet and want to use its output in a JSP you would probably want to include the servlet output directly in the JSP rather than convert the servlet to a bean. See the syntax for "<jsp:include " for details.