A Brief Overview of Java Server Page (JSP) programming

JSP has four predefined variables:

JSP includes four scripting elements:

<%
String wordList=(String) session.getAttribute("wordList");
if(wordList==null)
{
  out.println("wordList is empty");
}
else
{
  out.println(wordList);
}
%>

Revision #1
Created 12 January 2019 03:49:30 by Aaron Kimbrell
Updated 12 January 2019 03:56:00 by Aaron Kimbrell