일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- http://jeonghwan-kim.github.io/dev/2019/06/25/react-ts.html
- 출처 : https://webdir.tistory.com/506
- 게시판
- object
- https://velog.io/@velopert/create-typescript-react-component
- toString
- 출처 : https://joshua1988.github.io/web-development/javascript/promise-for-beginners/
Archives
- Today
- Total
Back Ground
게시판 만들기 - JSP boardView.jsp 게시글 상세보기를 위한 JSP 페이지 (View) 본문
JSP boardView.jsp 게시글 상세보기를 위한 JSP 페이지 (View)
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<script src="js/board.js"></script>
<script src="js/board.js"></script>
</head>
<body>
<div id="wrap">
<h1>게시글 상세보기</h1>
<table>
<tr>
<th>작성자</th><td>${board.name}</td>
<th>이메일</th><td>${board.email}</td>
</tr>
<tr>
<th>작성일</th><td><fmt:formatDate value="${board.writedate}"/></td>
<th>조회수</th><td>${board.readcount}</td>
</tr>
<tr>
<th>제목</th>
<td colspan="3">${board.title}</td>
</tr>
<tr>
<th>내용</th>
<td colspan="3"><pre>${board.content}</pre></td>
<!-- <pre> 문자열을 쓴 그대로 자유롭게 보여주는 선언자 -->
</tr>
</table>
<input type="button" value="게시글 수정" onclick="open_win('BoardServlet?command=board_check_pass_form&num=${board.num}','update')" />
<!-- open_win (board.js 자바스크립트파일 메서드)에 인자( url, name ) -->
<!-- open_win (board.js 자바스크립트파일 메서드)에 인자( url, name ) -->
<input type="button" value="게시글 삭제" onclick="open_win('BoardServlet?command=board_check_pass_form&num=${board.num}','delete')" />
<input type="button" value="게시글 리스트" onclick="location.href='BoardServlet?command=board_list'" />
<input type="button" value="게시글 등록" onclick="location.href='BoardServlet?command=board_write_form'"/>
</div>
</body>
</html>
' JSP > 게시판 만들기' 카테고리의 다른 글
게시판 만들기 - JSP BoardCheckPass.jsp 비밀번호 입력 화면을 위한 JSP 페이지 (View) (0) | 2016.06.22 |
---|---|
게시판 만들기 - BoardCheckPassFormAction (0) | 2016.06.21 |
게시판 만들기 - BoardViewAction (0) | 2016.06.18 |
게시판 만들기 - BoardWriteAction (0) | 2016.06.18 |
게시판 만들기 - JSP boardWrite.jsp 게시글 등록을 위한 JSP 페이지(View) (0) | 2016.06.17 |
Comments