| Author |
Can doAfterTag in TapSupport
|
riohk kurn
Ranch Hand
Joined: Oct 19, 2002
Posts: 31
|
|
Hi, As what I read mock exam: public class body extends TagSupport { public int doStartTag() throws JspException{ return EVAL_BODY_INCLUDE; } public int doAfterBody() throws JspException { try { pageContext.getOut().print("how are you?"); }catch(IOException e) {} return SKIP_BODY; } } what will be printed out by the following part of a jsp page? <prefix:sufix> <i>Hello</i> </prefix:sufix> 1) The tag handler won't compile. 2) The jsp page will print Hello how are you? 3) The jsp page will print how are you? Hello 4) The jsp page will print Hello The answer is 4 you can't print from doAfterBdoy in a TagSupport handlers, is it true? Please help
|
 |
 |
|
|
subject: Can doAfterTag in TapSupport
|
|
|