If you don't want to use Java in your page, you can take a
different approach and use the model where the user sends a
request to a servlet which callPage's a JSP.  Do all of your
processing in the servlet, and place the resulting beans into
the session.  Then, all you have to do in your JSPs is use
the INSERT values of the bean properties.

Using this approach can make life easier for your graphic
designers.  Also, it allows them to completely change the
visuals of the page without having to involve a Java designer.

Hope this helps.

Cheers,
Greg.

> -----Original Message-----
> From: A mailing list about Java Server Pages specification and reference
> [mailto:[EMAIL PROTECTED]]On Behalf Of Kurt Williams
> Sent: Thursday, March 04, 1999 11:51 AM
> To: [EMAIL PROTECTED]
> Subject: Re: Another JSP 1 spec suggestion
>
>
> BTW (and to save time...), yes, I already know that I can always break
> into Java with:
>
> <% tableBean.setColumnFormat = dataFormatBean; %>
>
> The idea is to avoid Java coding so that my page building folks don't
> have to know any java ;)
>
> - Kurt W.
>
> > -----Original Message-----
> > From: Kurt Williams [SMTP:[EMAIL PROTECTED]]
> > Sent: Thursday, March 04, 1999 9:39 AM
> > To:   [EMAIL PROTECTED]
> > Subject:      Another JSP 1 spec suggestion
> >
> > After using JSP for a while (and loving it) I've ran into a number of
> > situations where it would be advantageous to be able to set a bean's
> > property to another bean.  For example, I've got a set of format beans
> > and I've got a table bean.  It would be nice to assign the
> > table.columnFormat property to a bean, rather than a string.  Right
> > now
> > it seems that we are limited to just setting/getting string
> > properties.
> > It seems there should be some way to set a bean's property to another
> > bean, not just a string.
> >
> > Something like a <SETFROMBEAN> tag that could work like:
> >
> > <USEBEAN name="dateFormatBean"
> > type="com.mypackage.DateFormatBean"></BEAN>
> >
> > <USEBEAN name="tableBean" type="com.mypackage.TableBean">
> >   <SETFROMBEAN BEANPROPERTY="columnFormat" VALUE="dateFormatBean">
> > </USEBEAN>
> >
> > This would be ultra cool and very useful.  If there's already some way
> > to do this, someone let me know.
> >
> > Thanks!
> >
> > _______________________________
> >                                    Kurtis G. Williams
> >    Internet Applications Development
> >                       Sterling Wentworth Corp.
> >                        [EMAIL PROTECTED]
> >                 phone: (801) 355-9777 x260
> >                      fax: (801) 355-9792
> >
> > ======================================================================
> > =====
> > To unsubscribe, send email to [EMAIL PROTECTED] and include in the
> > body
> > of the message "signoff JSP-INTEREST".  For general help, send email
> > to
> > [EMAIL PROTECTED] and include in the body of the message "help".
>
> ==================================================================
> =========
> To unsubscribe, send email to [EMAIL PROTECTED] and include
> in the body
> of the message "signoff JSP-INTEREST".  For general help, send email to
> [EMAIL PROTECTED] and include in the body of the message "help".
>

===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".

Reply via email to