> I have this JSP:
> <% private class Something{} 
> 
> %>
> 
> this get's rejected by Jasper.
> Is there any reason why?

Someone recommended the syntax <%! [[decl]] %>
Remember that all such declarations are embedded in the
servlet class that is generated for you.  The upshot:
your Something class will be an "inner class".

-Bryan

Reply via email to