Writes the specified cookie value to the output stream,
or an empty string if not found.
String value =
CookieUtils.getCookieValue(name,
(HttpServletRequest) pageContext.getRequest());
if (value == null) {
value = "";
}
try {
pageContext.getOut().write(value);
}
catch (IOException e) {} // Ignore it
return EVAL_PAGE;