You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by "Harding, David" <dh...@Thomcomp.com> on 2000/11/03 22:36:15 UTC

and the fix to my data from servlet to jsp problem was...

drum roll please....


nested double quotes.


BAD....

<jsp:param name="name" value="<%= request.getAttribute("data") %>"/>



GOOD....

<jsp:param name="name" value='<%= request.getAttribute("data") %>'/>


thanks all those who helped



cheers