1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
public class Recep3Action extends DispatchAction {
public ActionForward combo(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response) {
RecepForm recepForm = (RecepForm) form;// TODO Auto-generated method stub
.............
.................
...............
return mapping.findForward("test2");
}
public ActionForward valider(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response) {
RecepForm recepForm = (RecepForm) form;// TODO Auto-generated method stub
...........
............
.........
return mapping.findForward("test2");
} |
Partager