BoardReWriteForm.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html> <html> <head> <jsp:include page="Header.jsp"/> </head> <body> <% //http://localhost:8090/Board/BoardReWriteForm.jsp?num=1&ref=1&ref_step=1&ref_level=1 //게시글 읽기해서 답변글쓰기를 클릭하면 넘겨주는 데이터를 받아줌 int num =Integer.parseInt(request.getParameter("num")); int ref =Integer.parseInt(request.getParameter("ref")); int ref_step =Integer.parseInt(request.getParameter("ref_step")); int ref_level =Integer.parseInt(request.getParameter("ref_level")); %> <div class="row"> <div class="col-md-2"></div> <div class="col-md-8"> <h2 class="text-center">답변글 입력하기</h2><p></p> <form action="BoardReWriteProc.jsp" method="post"> <div class="table table-responsive"> <table class="table table-striped"> <tr> <td>작성자</td> <td><input type="text" class="form-control" name="writer"></td> </tr> <tr> <td>제목</td> <td><input type="text" class="form-control" name="subject" value="[답변]"></td> </tr> <tr> <td>이메일</td> <td><input type="email" class="form-control" name="email"></td> </tr> <tr> <td>비밀번호</td> <td><input type="password" class="form-control" name="password"></td> </tr> <tr> <td>글내용</td> <td><textarea rows="10" cols="50" name="content" class="form-control"></textarea></td> </tr> <tr> <td colspan="2" class="text-center"> <input type="hidden" name="num" value="<%= num %>"> <input type="hidden" name="ref" value="<%= ref %>"> <input type="hidden" name="ref_step" value="<%= ref_step %>"> <input type="hidden" name="ref_level" value="<%= ref_level %>"> <input type="submit" value="답글쓰기완료" class="btn btn-success"> <input type="reset" value="취소" class="btn btn-warning"> <input type="button" class="btn btn-primary" onclick="location.href='BoardList.jsp'" value="전체글보기"> </td> </tr> </table> </div> </form> </div> </div> <jsp:include page="Bottom.jsp"/> </body> </html>
동영상 강좌와 다르게 모바일 적용이 가능한 반응형 부트스트랩을 사용하였다.
여기서는 jsp 를 배우는 강좌 이기 때문에 html 적 요소에는 비중있게 생각 하지 않아도 될 것이다.
또한, 일부 자바 코드는 제 입맛에 맞게 변경 하였습니다.
혹시, 이 강의를 들으면서 제 글을 읽고 소스코드를 참조하는 수강생이 있다면 동영상의 코드와 다르다고 생각지 마세요. 대부분 동여상 내용과 같으니 학습에 도움이 될거라 생각 합니다.
소스 : https://github.com/braverokmc79/jsp_sin
유튜브 동영상 출처 :
강사 : 신형섭(잭임연구원)
저작권 : (주)소프트캠퍼스 http://www.softcampus.co.kr 더많은 무료 강의는 사이트에서 확인하실수 있습니다.
댓글 ( 4)
댓글 남기기