Currently I use:
<%
final String message = (String) request.getAttribute ("Error_Message");
%>
and then
<%= message %>
However I wonder if the same can be done with EL or JSTL instead of using a scriptlet.
EL expression:
${requestScope.Error_Message}
There are several implicit objects in JSP EL. See Expression Language under the "Implicit Objects" heading.