/**
* Create and store form input context.
*/
public void init() throws Exception {
HttpServletRequest request = (HttpServletRequest)pageContext.getRequest();
FormContext context = new FormContext(request, getAction(), this, create);
pageContext.getRequest().setAttribute(FormInputTag.FORM_CONTEXT_KEY, context);
}