How call method from class file in jsp?

I am desgining a jsp page i need to call a method from a class file.so how it will achived.
[112 byte] By [happynilesha] at [2007-11-26 18:31:52]
# 1
Will you be using scriptlets, JSTL, JSF, struts.... ?You give way too little information to get a decent answer.
gimbal2a at 2007-7-9 6:05:59 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2

you can declare a bean which will represent your class e.g.

<jsp:useBean id="myClass" class="mypackage.myclass">

then you can call methods of your class using this id anywhere in your jsp page

e.g.

<h1><%=myClass.sayHello();%></h1>

Yggdraaa at 2007-7-9 6:05:59 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 3
thanks Yggdraa thats works...
happynilesha at 2007-7-9 6:05:59 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...