From: "Frasso, Anthony" <[EMAIL PROTECTED]> > <% String test = "This is a test String."; %> > <c:out value="${test}" /> > ${test} > > This should print out "This is a test String" twice, correct?
No. Scripting variables and tags do not mix. > Do I have to place the String in the request? Yes. (Did you try it?) Any scope will work... <% request.setAttribute( "test", "This is a test String"); %> -- Wendy Smoak --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]