public ActionForward userSave(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response) {
UserForm userForm = (UserForm) form;
return mapping.findForward("userSave");
}//傳參數
public ActionForward userSave(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response) {
UserForm userForm = (UserForm) form;
////////////////////////////////////////////////////////////////////////////////////////////////////////////
String path = mapping.findForward("delete").getPath();
//TODO: 讀取本Action所有的請求參數,將path重新構造,加上請求參數
ActionForward forward= new ActionForward(path+"&pageId=1");
forward.setRedirect(true);
//傳參數后返回
return forward;
/////////////////////////////////////////////////////////////////////////////////////////////////////////////
// return mapping.findForward("userSave");
}