전체 글(192)
-
콤포넌트 삽입_bootstrap
http://bootstrapk.com/components/ 콤포넌트 · 부트스트랩 Some default panel content here. Nulla vitae elit libero, a pharetra augue. Aenean lacinia bibendum nulla sed consectetur. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Nullam id dolor id nibh ultricies vehicula ut id elit. bootstrapk.com 복사 후 class 에 삽입
2022.02.03 -
부트스트랩 시작하기_bootstrap
1.bootstrap01.html 생성 2.bootstrap 환경 구성 3.bootstrap 환경 분리 bootstrap 외부에서 접근 못하게 숨기기 jsp:param include 파일에 파라미터 넘기기 특정 원하는 클래스 파일을 거쳐서 가도록 필터 콤포넌트 삽입 폴더경로 절대경로로 변경 - css, js, html 프레임 워크 - 3.x, 4.x 제이쿼리 필요(5버전은 제외) - bootstrap.min.css, bootstrap-theme.min.css, bootstrap.min.js 파일 필요 - 메타 정보 필요(ie 최신버전 선언, viewport 정보) - meta : 사이트의 정보(정의) 서술 - viewport : 디바이스 크기에 따라 보여지는 화면 설정을 할 수 있다. ( 모바일 웹 작업..
2022.02.03 -
jsp만_상품관리_jsp 2022.02.02
-
26_jsp만_로그인처리_세션응용_jsp 2022.02.02
-
25_jsp만_layout포함(로그인처리전)_jsp
m_search_list.jsp m_insert_form.jsp m_update_form.jsp top.jsp
2022.02.02 -
24_include_redirect_리스트화면연결_jsp
response.sendRedirect(); JSP 페이지에서 특정한 작업을 수행한 후 지정한 페이지로 이동 m_insert_action.jsp m_update_action.jsp m_delete_action.jsp 회원가입, 수정, 삭제 후 리스트 화면으로 돌아가도록 코드를 추가한다. response.sendRedirect(request.getContextPath()+"/mlist/m_list.jsp"); 실행 완료 된다면 경로를 m_search_list.jsp로 바꿔준다. //response.sendRedirect(request.getContextPath()+"/mlist/m_list.jsp"); response.sendRedirect(request.getContextPath()+"/msearch/m..
2022.02.02