Expression Language Examples
<%
// set up a page context parameter for use later in the page
// normally this would have been set within the context of
// an application
pageContext.setAttribute("pageColor", "blue");
%>
Welcome to the ${param.department} Department
Here are some basic comparisons:
Is 1 less than 2? ${1<2}
Does 5 equal 5? ${5==5}
Is 6 greater than 7? ${6 gt 7}
Now for some math:
6 + 7 = ${6+7}
8 x 9 = ${8*9}
You appear to be using the following browser:
${header["user-agent"]}