hi How to call a java bean from jsp page.. Is any other way to call javabean from jsp page apart from this sample code...<jsp:useBean id="obj" class="com.devsphere.articles.calltag.TestBean"/>thnx in advance
[249 byte] By [chithrakumara] at [2007-10-2 15:38:31]
HiU can use<% com.devsphere.articles.calltag.TestBean tb = new com.devsphere.articles.calltag.TestBean();%>and then use it.Better way is to use <jsp:useBan>HTHVJ