accessing class method in JSP page

HiI have a simple question. I have created a Bean for a jsp page. One of the methods of the bean, validate(), needs to accessed from the jsp page. Can some one tell me how do i accomplish that using jsp or el?
[223 byte] By [karanJa] at [2007-11-27 9:57:17]
# 1

The standard way in a JSP is to use a useBean tag with your class called 'MyBean"

<jsp:useBean id="MyValidatorBean" class="appl.personnel.MyValidatorBean" scope="request />

Then use the function as follows:

<%=myValidatorBean.validate()%>

((assuming validate() function returns a string))">

George123a at 2007-7-13 0:27:33 > top of Java-index,Java Essentials,New To Java...