Hi everybody, I am working on JSP for the past two weeks and i am not able to understand the concept of 1)taglib and 2)<jsp:useBean> tag Can somebody help on these two. Also can somebody direct me to some sites where i can download some material which has examples on the above topics.
Hi cynthia, Thanks for the reply. I found the sites very helpful. I really wish you or anybody can help me with <jsp:useBean> tag. I would be really grateful. Thanks in advance. Michelle
Carl Desborough
Greenhorn
Joined: May 08, 2000
Posts: 22
posted
0
You can use the useBean tag to create a javabean object (or retrieve an existing one from the request or session or application associcated with the jsp page) ... you can then execute methods on the bean you retrieve by including java code in your jsp, eg: <%= mybean.getValue() %>