About Question com.enthuware.ets.scwcd.v5.2.233 :
Posted: Wed Jun 12, 2013 11:33 am
The method signature is wrong:
At least it should be:
Code: Select all
public void doStartTag()
{
if(somecondition)
{
return IterationTag.EVAL_BODY_INCLUDE;
}
else
{
LINE 1: //forward the request to page2.jsp
}
}
Code: Select all
public int doStartTag()
{
if(somecondition)
{
return IterationTag.EVAL_BODY_INCLUDE;
}
else
{
LINE 1: //forward the request to page2.jsp
}
}