RE: [OT] Re: A bean:define question

2003-04-02 Thread Sri Sankaran
snip/ I've always been confused by people who ask things like, Does IDE X support JSP debugging?. Well, if you need to debug your JSP, you've got way too much logic in there and no IDE will save you. Not necessarily. JSP debugging is definitely handy when you are working with a

RE: [OT] Re: A bean:define question

2003-04-02 Thread Sri Sankaran
-Original Message- From: Gemes Tibor [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 02, 2003 9:09 AM To: Struts Users Mailing List Subject: Re: [OT] Re: A bean:define question Sri Sankaran írta: JSP debugging is definitely handy when you are working with a not-yet

Re: [OT] Re: A bean:define question

2003-04-02 Thread Craig R. McClanahan
On Wed, 2 Apr 2003, Affan Qureshi wrote: Date: Wed, 2 Apr 2003 08:36:31 +0500 From: Affan Qureshi [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: [OT] Re: A bean:define question Isn't the scriplet free

RE: [OT] Re: A bean:define question

2003-04-02 Thread apachep2
: [OT] Re: A bean:define question On Wed, 2 Apr 2003, Affan Qureshi wrote: Date: Wed, 2 Apr 2003 08:36:31 +0500 From: Affan Qureshi [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: [OT] Re: A bean:define question

RE: [OT] Re: A bean:define question

2003-04-02 Thread David Graham
You should be using a table row tag to perform that logic. David From: apachep2 [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Subject: RE: [OT] Re: A bean:define question Date: Wed, 2 Apr 2003 12:32:05 -0500 I found

RE: A bean:define question

2003-04-01 Thread Robert Taylor
You will have to do something like this: % String key = request.getParameter(httpParameter) + .name; % bean:define id=varName bean:message key=%=key%.name/ /bean:define robert -Original Message- From: Binaghi Mauro [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 01, 2003 11:09 AM

RE: A bean:define question

2003-04-01 Thread Karr, David
This might work: bean:define id=varName bean:message key='%= request.getParameter(httpParameter) + .name %'/ /bean:define -Original Message- From: Binaghi Mauro [mailto:[EMAIL PROTECTED] Hi I have the user.name property in my

Re: A bean:define question

2003-04-01 Thread James Mitchell
on the page -- James Mitchell Software Developer/Struts Evangelist http://www.open-tools.org - Original Message - From: Karr, David [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Tuesday, April 01, 2003 11:14 AM Subject: RE: A bean:define question This might

[OT] Re: A bean:define question

2003-04-01 Thread Affan Qureshi
Mailing List [EMAIL PROTECTED] Sent: Wednesday, April 02, 2003 12:21 AM Subject: Re: A bean:define question or using the scriptlet-free version bean:parameter id=myparam name=httpParameter/ bean:define id=msgKey bean:write name=myparam/.name /bean:define bean:define id=varName

Re: [OT] Re: A bean:define question

2003-04-01 Thread James Mitchell
List [EMAIL PROTECTED] Sent: Wednesday, April 02, 2003 12:21 AM Subject: Re: A bean:define question or using the scriptlet-free version bean:parameter id=myparam name=httpParameter/ bean:define id=msgKey bean:write name=myparam/.name /bean:define bean:define id=varName

Re: [OT] Re: A bean:define question

2003-04-01 Thread David Graham
The reason to avoid scriplets is to allow seperation of page designers and developers dependancies but the poor page designer won't make much sense out of either of them in this case i think and its better to give him one line of confusion than 5. Ah, the mysterious page designer. They're