JSP Expression Language : Basics « JSP « Java
- Java
- JSP
- Basics
JSP Expression Language
<%-- <%@page isScriptingEnabled="true" %> --%>
<html>
<head>
<title>Using the JSP Expression Language</title>
</head>
<body>
<h1>The Expression Language</h1>
The value of the name is ${header.userAgent}.
</body>
</html>
Related examples in the same category