Define a method in a JSP pageFrom WikiJava
This example shows how to create a function inside a JSP file
the articleIt's really straightforward, the example shows how to define the method and how to call it. the JSP<%! public String sayHello(){ return "Hello"; } %> <%= sayHello() %> See Also |
