기존/🏀Jsp

jsp 회원등록,수정,삭제,리스트(CRUD) 로직 구현하기 예약페이지 예약 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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 protected void process(HttpServletRequest request, HttpServletResponse res..
jsp 회원등록,수정,삭제,리스트(CRUD) 로직 구현하기 게시판 조회수 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 public void boardCnt(int bidx) { // 게시판 조회수 int cnt = 0 ; int rs = 0; String sql = "update board SET HIT =(HIT+1) where bidx = ?"; try { pstmt = conn.prepareStatement(sql); pstmt.setInt(1, bidx); rs = pstmt.executeUpdate(); } catch (Exception e) { e.printStackTrace(); } } Colored by Color Scripter cs 1..
jsp 회원등록,수정,삭제,리스트(CRUD) 로직 구현하기 댓글 답변 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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 else if (command.equals("/board/boardReply.do")) { String bidx = request.getParameter("bidx"); String originbidx = request.getParameter("originbidx"); String depth = request.getParameter("depth"); String level_ =..
보호되어 있는 글입니다.
jsp 회원등록,수정,삭제,리스트(CRUD) 로직 구현하기 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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 else if (command.equals("/board/boardModify.do")) { //게시판 수정하기 System.out.println("���� ������"); //1.�Ķ���Ͱ� �Ѿ�� String bidx = request.getParameter("bidx"); int bidx_ = Integer.parseInt(bidx); //2. ó���� BoardDao bd = new BoardDao(); BoardV..
jsp 회원등록,수정,삭제,리스트(CRUD) 로직 구현하기 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 29 30 31 32 33 else if (command.equals("/board/boardContent.do")) { // 게시판 내용보기 String bidx = request.getParameter("bidx"); System.out.println("bidx="+bidx); int bidx_ = Integer.parseInt(bidx); System.out.println("bidx="+bidx_); // 각각의 bidx 의 값을꺼냄 BoardDao bd =new BoardDao(); // 게시판 BIDX 번..
조각남자
'기존/🏀Jsp' 카테고리의 글 목록 (3 Page)