Jsp is an acronym for java server pages. It is can be a simple html page with static content or dynamic html page with some scriptlets. In either cases the name of the file should have .jsp extension which indicates that the page is a jsp page.
Example.jsp
<html>
<head>
<title>An example for simple jsp</tile>
</head>
<body>
You can have all your contents within this body
</body>
</html>
|