Package com.jeecms.extend.form

Examples of com.jeecms.extend.form.UserInfoForm


  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);
View Full Code Here

TOP

Related Classes of com.jeecms.extend.form.UserInfoForm

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.