在appufse1.9.4中,signup.jsp中同form中有两个按钮:
           
<ww:form name="signupForm" action="signup" method="post" validate="true"><input type="submit" class="button" name="save"   value="<fmt:message key="button.register"/>"/>
        <input type="submit" class="button" name="cancel" value="<fmt:message key="button.cancel"/>"/>
</ww:form>

该form对应的action:SignAction中有一字符:cancel,当用户点击UI上的“取消”按钮时,会对其进行值的设置:“cancel”,即该按钮对应的name请问:这个的实现的机制是什么?有哪位大哥知道