HttpServletRequest request, HttpServletResponse response)throws Exception {
return list(mapping, form, request, response);
}
public ActionForward delete(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response)throws Exception {
UserInfoForm frm=(UserInfoForm)form;
String[] chkId=frm.getChkId();
/*if(chkId!=null)for (int i = 0; i < chkId.length; i++) {
biz.deleteById(chkId[i]);
}*/
if(chkId!=null)
biz.deleteByIds(chkId);