How to get request parameter using c taglib ?

2002-03-25 Thread RAYMOND Romain
helloo, Specs indicate c:out value=${request:myparameter}/ to do an equivalent to request.getParameter(myparameter) but it is not good ... Have you the right syntax ? -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: How to get request parameter using c taglib ?

2002-03-25 Thread John Baker
On Monday 25 Mar 2002 14H:43 pm, you wrote: helloo, Specs indicate c:out value=${request:myparameter}/ That looks like request:myparameter not request . myparameter, note the full stop. You want request.myparameter. to do an equivalent to request.getParameter(myparameter) but it is not

Re: How to get request parameter using c taglib ?

2002-03-25 Thread Shawn Bayern
On Mon, 25 Mar 2002, RAYMOND Romain wrote: Specs indicate c:out value=${request:myparameter}/ to do an equivalent to request.getParameter(myparameter) but it is not good ... Have you the right syntax ? The current specs don't say that. Are you reading documentation that's out of date?

Re: How to get request parameter using c taglib ?

2002-03-25 Thread RAYMOND Romain
ba ba ba bah :) John Baker a écrit : On Monday 25 Mar 2002 17H:58 pm, you wrote: On Mon, 25 Mar 2002, RAYMOND Romain wrote: Specs indicate c:out value=${request:myparameter}/ to do an equivalent to request.getParameter(myparameter) but it is not good ... Have you the right