Web Hosting | Hosting News Blog

Java Tutorials

Simple JSP page Example

Monday, April 28th, 2008

Here is the simple Java tip exemplify an illustration of a Quintessential JSP page. A JSP page consists of template text with embedded JSP elements. Template text is automatically written to the output stream while the embedded JSP elements are executed.
<html>
<head>
<title>A Simple JSP Page</title>
</head>
<body>
<pre>
This is template text; it is automatically written to the output
stream.
<hr>
<%– This [...]