From: Marcello Savino
> I really don't undestand what you mean.
> Can you explain with a little example ?

http://www.phptr.com/articles/article.asp?p=26119&seqNum=7&rl=1

http://java.sun.com/developer/Books/javaserverpages/cservletsjsp/index.h
tml has a link (PDF) to the chapter about creating custom tags which
might also help.

In a nutshell, look at the tag's doAfterBody method (this is from the
first link):

public class FilterTag extends BodyTagSupport {
 public int doAfterBody() {
  BodyContent body = getBodyContent();
  String filteredBody =
   ServletUtilities.filter(body.getString());
//...etc.

body.getString() gives you the rendered contents of the tag's body.

Dave

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

Reply via email to