Re: beans vs objects

2000-06-26 Thread Veena
Can u send the sample code of how u tried this.. - Original Message - From: Gunaseelan Nagarajan <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, June 23, 2000 3:31 PM Subject: beans vs objects > hi everyone, > > I am having a jsp file which u

Re: beans vs objects

2000-06-26 Thread Sanjay Gomes
Regards Sanjay >From: Tushar Kuwad <[EMAIL PROTECTED]> >Reply-To: A mailing list about Java Server Pages specification and > reference <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: Re: beans vs objects >Date: Mon, 26 Jun 2000 20:27:00 +0530 >

Re: beans vs objects

2000-06-26 Thread Tushar Kuwad
I am sending a mail without any attachement.But I do not see it in the interest group. Instead I am getting a mail from [EMAIL PROTECTED] about their mailing policy. Kindly help. Regards, Tushar Gunaseelan Nagarajan wrote: > hi everyone, > > I am having a jsp file which uses a class(bean) for

Re: beans vs objects

2000-06-23 Thread Thomas Preston
ference <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: beans vs objects >Date: Fri, 23 Jun 2000 03:01:40 -0700 > >hi everyone, > >I am having a jsp file which uses a class(bean) for >accessing data. I then display the data from the >bean using "<%=" t

beans vs objects

2000-06-23 Thread Gunaseelan Nagarajan
hi everyone, I am having a jsp file which uses a class(bean) for accessing data. I then display the data from the bean using "<%=" tags. Initially i did it using tag. The jsp page was slow. so i replaced the use-bean with <% MyClass myObj = new MyClass(); %> The jsp is some 5 times faster.