try this
<html:img name="rvalue" height="<%=rvalue.hieght%>" />

>From: "chiji nwankwo" <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: [EMAIL PROTECTED]
>Subject: Re: Itetaring over an array list of bean values
>Date: Tue, 02 Oct 2001 17:05:14 +0000
>


_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp
--- Begin Message ---

The values are being returned to the jsp page ok.  What I am trying to do is use the values contained in the array list as parameters values passed to the html:img tag.

eg

<html:img name="retrived name value" height="retrieved height value" ... />

the retrived values will be the values contained in the bean.

I hope this makes sense.

Thanks

chiji

>From: "SUPRIYA MISRA" <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: [EMAIL PROTECTED]
>Subject: Re: Itetaring over an array list of bean values
>Date: Tue, 02 Oct 2001 16:53:19 +0000
>MIME-Version: 1.0
>X-Originating-IP: [146.9.55.120]
>Received: from [64.125.133.20] by hotmail.com (3.2) with ESMTP id MHotMailBD833D0B008C4004321A407D851409F70; Tue, 02 Oct 2001 09:57:47 -0700
>Received: (qmail 45858 invoked by uid 500); 2 Oct 2001 16:53:42 -0000
>Received: (qmail 45848 invoked from network); 2 Oct 2001 16:53:41 -0000
>Received: from f169.law11.hotmail.com (HELO hotmail.com) (64.4.17.169) by daedalus.apache.org with SMTP; 2 Oct 2001 16:53:41 -0000
>Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 2 Oct 2001 09:53:19 -0700
>Received: from 146.9.55.120 by lw11fd.law11.hotmail.msn.com with HTTP;Tue, 02 Oct 2001 16:53:19 GMT
>From struts-user-return-18176-cn081 Tue, 02 Oct 2001 09:58:29 -0700
>Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
>Precedence: bulk
>list-help:
>list-unsubscribe:
>list-post:
>Delivered-To: mailing list [EMAIL PROTECTED]
>Message-ID: <[EMAIL PROTECTED]>
>X-OriginalArrivalTime: 02 Oct 2001 16:53:19.0512 (UTC) FILETIME=[BD228980:01C14B62]
>X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
>
>you need to create a class images
>
>public class image{
> String pix;
> int hieght;
> int width;
>//setters and getters
>}
>
>In your action class you create an arraylist;
>
>ArrayList pics= new ArrayList();
>//loop
> image img=new image;
> //set the image values;
>
> pics.add(img);
>//endloop
>Once your arraylist is built om images store it in the ActionForm.
>ActionForm.setImages(pics);
>
>Then on the JSP you need to iterate
>
>>property="images">
>
>
>
>
>
>
>>From: "chiji nwankwo" <[EMAIL PROTECTED]>
>>Reply-To: [EMAIL PROTECTED]
>>To: [EMAIL PROTECTED]
>>Subject: Itetaring over an array list of bean values
>>Date: Tue, 02 Oct 2001 14:50:33 +0000
>>
>
>
>_________________________________________________________________
>Get your FREE download of MSN Explorer at
>http://explorer.msn.com/intl.asp
><< message3.txt >>


Get your FREE download of MSN Explorer at http://explorer.msn.com
--- End Message ---

Reply via email to