Daniel Pitts wrote:
>>> Please refrain from multi-posting in future.
>>>
>>> (X-post to c.l.j.p./h., w/ f-u to c.l.j.h. only)
>>
>> in many newsgroups they suggest not to xpost...
>>
> True, but multi-posting is a worse offense in almost all of them. If
> you are going to post a message to many places, it should be a cross,
> not multi.
I'll keep that in mind.
however, this could be helpful for somebody in the future, then I post it
here:
because I couldn't find a solution, I'm using a scriplet inside the JSP
that
does the job:
int numBooks = Integer.parseInt(request.getParameter("numBook"));
for (int i=1; i<=numBooks; i++)
{
String bookBeanS = "bookBeanBeg" + i + "";
p4Solution.BookBean bookBean = null;
bookBean = (p4Solution.BookBean) session.getAttribute(bookBeanS);
out.write(bookBean.getSeq_no());
}
--
ciao
Vittorix


|