On 3/7/06, Marcio Ghiraldelli <[EMAIL PROTECTED]> wrote:
>     <c:import> worked ok, it keep the request values and integrate ok the
> output, but:
>
>     <c:import url="<%=request.getParameter("action")%>" />
>     "According to TLD, the attribute URL canĀ“t accept any expression"

You can copy request parameter to request attribute (say, to "action")
and then use
<c:import url="${requestScope.action}" /> Looks stupid but should work.

Or you may try using JSTL-RT instead of JSTL-EL (do you use JSTL 1.0
from separate library?) But I don't know can you use both flavors in
the same application.

Michael.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to