FYI,

I'm using the log component from JSTL to dump values on my JSP page when 
debugging it.  It is a big help.

In you jsp page do the following:
...
<%@ taglib uri="http://jakarta.apache.org/tabligs/log-1.0"; prefix="log" %>
...
<p><b>*** START: Dump of Page Variables ***</b><br />
   <log:dump scope="page"/><b>*** END: Dump of Page Variables ***</b>
</p>
<p><b>*** START: Dump of Request Variables ***</b><br />
   <log:dump scope="request"/><b>*** END: Dump of Request Variables ***</b>
</p>
...

Works like a champ.  You just have to put the jar and the tld in the proper 
locations.  (I just dropped then in the WEB-INF/lib.)

This tag lib is located here: 
http://jakarta.apache.org/taglibs/doc/log-doc/intro.html

Get the binary download of the "Log Tag Library".

Steve

_________________________________________________________________
Chat with friends online, try MSN Messenger: http://messenger.msn.com


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to