JSPs TutorialsJavaServer Pages is a Java technology involved in web development. Writing a JSP page
is similar to writing an HTML page. It focuses on the creation of the "View" which can be thought of as the
part of an application that a user directly interacts with. JSPs typically contain code focused on the
layout and display of data. More advanced logic and computations are usually better left for normal Java
classes, and the resulting data can be sent to a JSP for display.
|