Skip to content

scriptlets.jsp


<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta name="generator" content="HTML Tidy, see www.w3.org" />

    <title>JSP Scriptlets</title>
  </head>

<%

String bgColor = request.getParameter("bgColor");

if((bgColor == null) || (bgColor.trim().equals(""))) {
    bgColor = "WHITE";
}

%>

  <body bgcolor="<%= bgColor %>">
    <h3>JSP Scriptlets</h3>

    <ul>
      <li>

<%

String greeting = "Well hi there!";
out.println(greeting);

%>

      </li>
    </ul>

    <p><a href="/java112">Home</a></p>
  </body>
</html>