On 12/15/05, David Evans <[EMAIL PROTECTED]> wrote:
> I am not sure the specifics, but some versions of jsp require you to do
> this:
> <%@ page isELIgnored="false" %>
> and some older version of the jstl don't take EL in the attributes.
>
> you could test to see if EL is being evaluted by doing this:
> <c:out value="${sysvar}" />
>
> maybe this will help:
> http://jakarta.apache.org/taglibs/doc/standard-doc/intro.html
>
<snip/>This may help as well: http://wiki.apache.org/jakarta-taglibs/FrequentlyAskedQuestions -Rahul > dave > > On Fri, 2005-12-16 at 01:15 +0330, Legolas Woodland wrote: > > David Evans wrote: > > > As someone else mentioned, the problem could be the scope of your > > > variable. Another thing to check, are you sure that EL is being > > > evaluated in your page? > > > > > > > > How i can ensure about : does EL evaluate or not ? > > What i have done is : > > I add the JSTL taglib declaration to my jsp file and i do those coding > > that i mentioned. > > if the variable is not in my page scope , how it is shown when i use : > > > > <%=sysvar%> > > > > , can you tell me how i should check the variable scope ? > > if variable is not in the scope , why the Tag does not return exception . > > > > Thank you > > <snap/> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

