Re: How can I set an attribute with the value of a property?

2002-04-27 Thread Mike Coburn
This is in fact what I am trying to do: <%for (int i = 0; i < Test.getIdx(); i++) { %> < Input Tag<%out.print(i);%> > Name: "> Value: <% } %> but it does not work for th

UPPER or LOWER function for MS Access

2002-04-27 Thread Bhushan_Bhangale
Hi, Does anybody know the alternative of UPPER or LOWER function for MS Access? This UPPER & LOWER functions works in ORACLE but in MS Access it says Undefined function. Please help. Thanks & Regards Bhushan Bhangale Infosys Technologies Ltd. Pune - 411042 Tel : (Office) +91 (20) 2932800 Ext -

Re: How can I set an attribute with the value of a property?

2002-04-27 Thread Richard Yee
Mike, Have you checked out the Struts iterator tag? That would do what you want w/ a custom tag. As for direct bean access not being supported in future versions, I haven't heard anything about that. Beans are just like any other Java object. Try this: <%for (int i = 0; i < Test.getIdx(); i+

Re: Tag Performance -- Please help

2002-04-27 Thread Hans Bergsten
Jack Xu wrote: > I am using jsp custom tags for internationalization. Syntax is key="key"> > > On one screen, the tag is used many times with various keys in order to get > all the text. However, it causes serious performance problem because it > seems like a new instance of the tag handler is cr