Examples of batchDeleteAddress()


Examples of com.lgx8.gateway.dao.IAddressDao.batchDeleteAddress()

    {
      String idStr = request.getParameter("addressId");
     
      String[] ids = idStr.split(",");
     
      addressDao.batchDeleteAddress(ids);
      //跳转
      response.setContentType("text/html;charset=UTF-8");
      PrintWriter out = response.getWriter();
      out.print("<script type=\"text/javascript\">alert('删除成功');location.href='page/management/member/member_welcome.jsp?url=member_address.jsp'</script>");
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.