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);
}
%>

Created 2019-01-12 03:49:30 UTC by Aaron Kimbrell
Updated 2019-01-12 03:56:00 UTC by Aaron Kimbrell