Sunday, February 17, 2008

first jsp

**JSP simply puts Java inside HTML pages.
You can take any existing HTML page and change
its extension to ".jsp" instead of ".html".


**what makes JSP useful is the ability to embed Java.
< HTML>
< BODY>
Hello! The time is now < %= new java.util.Date() %>
< /BODY>
< /HTML>

**The character sequences < %= and %> enclose Java expressions,
which are evaluated at run time.

No comments: