You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by bu...@apache.org on 2002/02/02 01:21:57 UTC

DO NOT REPLY [Bug 5974] - using Java code with quotes in attribute-value of tag

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=5974>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=5974

using Java code with quotes in attribute-value of tag

kin-man.chung@sun.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|                            |INVALID



------- Additional Comments From kin-man.chung@sun.com  2002-02-02 00:21 -------
I could not get Jasper to compile

	<dvb:Tab select="<%= b?"yes":"no" %>" />

cleanly, so I can't explain why it worked for you, but I doubt that it did.  I
also doubt very much that it works with jsp 1.1.

Instead of escaping ", you should just write

	<dvb:Tab select='<%= b?"yes":"no" %>' />

It is easier to read, and less error prone.

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>