CarreserveInfo.jsp
추가 및 변경
~~ ~~ <form action="RentCarMain.jsp"> ~ ~~ <tr> <td colspan="2" class="text-center"> <input type="hidden" value="CarOptionSelect.jsp" name="center"> <input type="hidden" value="<%= bean.getImg() %>" name="img"> <input type="hidden" value="<%= bean.getNo() %>" name="no"> <input type="submit" class="btn" value="옵션 선택후 구매하기"> </td> </tr> ~~ ~
CarOptionSelect.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <% int no =Integer.parseInt(request.getParameter("no")); //수량 int qty =Integer.parseInt(request.getParameter("qty")); //이밎 String img =request.getParameter("img"); %> <div class="container marketing" id="marketing"> <!-- Three columns of text below the carousel --> <div class="row"> <h2 class="text-center" id="carTitle">옵션 선택</h2> <div class="col-xs-1 col-md-1"></div> <div class="col-sm-5"> <img src="img/<%= img %>" id="infoImg"> </div> <div class="col-sm-5"> <form action="RentCarMain.jsp?center=CarReserveResult.jsp" method="post"> <table class="table"> <tr> <th>대여기간</th> <td> <select name="reserveday" class="form-control"> <option value="1">1일</option> <option value="2">2일</option> <option value="3">3일</option> <option value="4">4일</option> <option value="5">5일</option> <option value="6">6일</option> <option value="7">7일</option> </select> </td> </tr> <tr> <th>대여일</th> <td> <input type="date" name="rday" class="form-control"> </td> </tr> <tr> <th>보험적용</th> <td> <select name="userin" class="form-control"> <option value="1">적용 (1일 1만원)</option> <option value="2">비적용</option> </select> </td> </tr> <tr> <th>Wifi 적용</th> <td> <select name="usewifi" class="form-control"> <option value="1">적용 (1일 1만원)</option> <option value="2">비적용</option> </select> </td> </tr> <tr> <th>네이게이션 적용</th> <td> <select name="usenavi" class="form-control"> <option value="1">적용 (무료)</option> <option value="2">비적용</option> </select> </td> </tr> <tr> <th>베이비시트 적용</th> <td> <select name="userseat" class="form-control"> <option value="1">적용 (1일 1만원)</option> <option value="2">비적용</option> </select> </td> </tr> <tr> <td colspan="2" class="text-center"> <input type="submit" value="차량예약하기" class="form-control" style="background-color: #222222; color:#fff"> </td> </tr> </table> </form> </div> <div class="col-xs-1 col-md-1"></div> </div> </div>
동영상 강좌와 다르게 모바일 적용이 가능한 반응형 부트스트랩을 사용하였다.
여기서는 jsp 를 배우는 강좌 이기 때문에 html 적 요소에는 비중있게 생각 하지 않아도 될 것이다.
또한, 일부 자바 코드는 제 입맛에 맞게 변경 하였습니다.
혹시, 이 강의를 들으면서 제 글을 읽고 소스코드를 참조하는 수강생이 있다면 동영상의 코드와 다르다고 생각지 마세요. 대부분 동여상 내용과 같으니 학습에 도움이 될거라 생각 합니다.
소스 : https://github.com/braverokmc79/jsp_sin
유튜브 동영상 출처 :
강사 : 신형섭(잭임연구원)
저작권 : (주)소프트캠퍼스 http://www.softcampus.co.kr 더많은 무료 강의는 사이트에서 확인하실수 있습니다.
댓글 ( 4)
댓글 남기기