>
> In a declaration I have a String variable with a JSP syntax in it like this:
>
> <%!
> public static String blabla = "<%= hi %>";
> %>
>
> Unfortunately it seems like the JSP engine (JSWDK 1.0 EA2) is trying to
> parse this as a JSP expression. This is a bug, right?
>
No, as per the spec. a "%>" in a scripting element must be escaped. So the
proper syntax would be :
<%!
public static String blabla = "<%= hi %\\>";
%>
Mandar.
===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST". For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".