Adds the parameter name and the URL encoded value to the
parent's parameter list.
Tag parent = findAncestorWithClass(this, ParamParent.class);
if (parent == null) {
throw new JspException("The param action is not " +
"enclosed by a supported action type");
}
ParamParent paramParent = (ParamParent) parent;
paramParent.setParam(name, URLEncoder.encode(value));
return EVAL_PAGE;