> we have content in the DB and we want to do something like this:
>
> hello <%= username %>, this is your content page.
>
>
> That's when we're going to hit a snag. You see there IS a need for
dynamic
> content. Perhaps this is too off topic for this list, and if it is, could
> anyone recommend a good JSP discussion mailing list out there?
but why in the world dont you do something like
<jsp:useBean id="doorToTheBackend" class="blah" scope="session"/>
hello <%= doorToTheBackend.getUsername() %>
Or set the username somewhere else. Or use SQL tags. Of course there is a
need for dynamic content - but since JSP's raison d'être IS generating
dynamic content, generating JSPs would be opening another meta-level. I just
dont see why
(I think this list can handle this. We shuold be done real soon)