And the other cool thing about JSP is that it supports inheritence. You can
inherit one page from another. 'Snot bad, huh?
> > Whats the JSP code look like? Can I mix and match it inside and around
> HTML
> > like I would below:
> >
> > <HMTL>
> > <HEAD>....</HEAD>
> > <BODY>
> > blah blah
> >
> > <?php
> >
> > echo "Hello from PHP.\n";
> >
> > ?>
> >
> > </BODY>
> > </HTML>
>
> Of course:
>
> <HMTL>
> <HEAD>....</HEAD>
> <BODY>
> blah blah
>
> <%="Hello from JSP"%><BR>
> <%
> String someString = "Hello world";
> %>
> <%=someString%>
>
> %>
>
> </BODY>
> </HTML>
>
> You can also include beans (and have them session, page or application
> bound), have parameters in the bean auto-set from the form posting,
include
> other JSP's or html, etc etc etc.
>
> etc.
>
> N
> --
> Nic Wise - 021.676.418 / [EMAIL PROTECTED]
> Is it not a foolish man, said little Woo, who keeps all his chickens in
his
> trousers?
> For at best, will he not suffocate his chickens, and, and worst, will he
not
> disappoint the ladies in the village?
> --Alexi Sayle
>
>
> --------------------------------------------------------------------------
-
> New Zealand Delphi Users group - Offtopic List - [EMAIL PROTECTED]
> Website: http://www.delphi.org.nz
---------------------------------------------------------------------------
New Zealand Delphi Users group - Offtopic List - [EMAIL PROTECTED]
Website: http://www.delphi.org.nz