Re: jstl and the brink of madness

2004-09-30 Thread andy wix
Hi, Thanks - requestScope.create works. I was copying from page 12 of Core JSTL - can't belive all you read! Cheers, Andy _ Want to block unwanted pop-ups? Download the free MSN Toolbar now! http://toolbar.msn.co.uk/ ---

Re: jstl and the brink of madness

2004-09-30 Thread Fredrik Sundberg
Try ${empty create} instead. Regards, /Fredrik - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: jstl and the brink of madness

2004-09-30 Thread Luis Urueña Frías
Hi, be careful!! Not is the same a HTTP parameter (arrives in the HTTP header or content of the HTTP procotol) like an Attribute, which is an object attached to the request, context or session Java implementation. Only parameter haven´t Java dependence If you want yor code rules try:

Re: jstl and the brink of madness

2004-09-30 Thread Duncan Mills
Shouldn't your test be: hello goodbye As you've set this as a Request attribute Regards Duncan Mills andy wix wrote: Hi, The following expression always evaluates to true even though I can see the create parameter in the request. <%@ taglib uri="jstl/c" prefix="c" %> hello goodbye I set the

RE: jstl and the brink of madness

2004-09-30 Thread Paul McCulloch
I don't think scoped attributes & parameters are the same thing. Try http://somehost/app/mypage.jsp?create=something to set a parameter. Paul > -Original Message- > From: andy wix [mailto:[EMAIL PROTECTED] > Sent: Thursday, September 30, 2004 3:59 PM > To: [EMAIL PROTECTED] > Subject: jst