Object parent = getParent();
if (! (parent instanceof NameValueTag))
throw new JspException(L.l("c:param requires c:url or c:import parent."));
NameValueTag tag = (NameValueTag) parent;
tag.addParam(name, value);
return EVAL_PAGE;
} catch (ELException e) {
throw new JspException(e);
}