Skip to content

Instantly share code, notes, and snippets.

@raunakhajela
Created January 11, 2018 07:01
Show Gist options
  • Save raunakhajela/e9c6980bb1c2b035e706d3bc6a45cdfd to your computer and use it in GitHub Desktop.
Save raunakhajela/e9c6980bb1c2b035e706d3bc6a45cdfd to your computer and use it in GitHub Desktop.
JSP: Declarations
<!--They allow us to declare a method in the JSP page. You can call the method in the same JSP page-->
<html>
<body>
<%!
String makeItLower(String data){
return data.toLowerCase();
}
%>
Lower case "Hello World": <%= makeItLower("Hello World") %>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment