jsp:
------------------------
<html:form action="TestTagsAction">
<html:text property="attr_dd" />
<html:submit property="submit"/>
// 我在这里如何能得到attr_dd 的值?用java代码。
</html:form>action:
-----------------------
public ActionForward perform(ActionMapping ..){
        TestForm f =(TestForm)form;
        f.setAttr_dd("good");
        return mapping.findForward("tags");
    }