Question About Second Pass Rendering

2003-06-21 Thread Hunter Hillegas
Is it possible to do some kind of second pass rendering of JSP content? I'd like to store markup (HTML+JSTL) in a database. I'd like a Servlet to retrieve it and send it along to a JSP that renders it along with static content... Is there any way to do what I'm suggesting? It seems like a common

1.03 Change List?

2003-02-26 Thread Hunter Hillegas
Any place where there is a list of changes? Hunter - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Attributes with Spaces in Their Names

2003-02-19 Thread Hunter Hillegas
One of the applications I am working on has application scope attributes that have spaces in their names, such as: "theCollection PacificRim". When accessing from JSTL's forEach tag, I get this: 'forEach' / attribute = 'items': An error occurred while parsing custom action attribute "items" with

Re: foreach Problem - Not iterating like expected...

2003-02-10 Thread Hunter Hillegas
gt; > Subject: Re: foreach Problem - Not iterating like expected... > > > > On Mon, 10 Feb 2003, Hunter Hillegas wrote: > >> I have the following code: >> >> <% >> System.out.println("Star

foreach Problem - Not iterating like expected...

2003-02-10 Thread Hunter Hillegas
I have the following code: <% System.out.println("Start Page: " + startPage); //DEBUG System.out.println("End Page: " + endPage); //DEBUG %> <% System.out.println("Looping..."); //DEBUG %> When I run this code, I get the following values printed out for start and end: