Sunday, February 24, 2013

Function in JSP

<!DOCTYPE html>
<html>
    <body>
        <%!
            public int add(int x, int y){
                int res = x + y;
                return res;
            }
        %>
       
        <%
            out.println(add(2,3));
        %>
    </body>
</html>

No comments:

Post a Comment