%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
${content}
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ taglib prefix="c" uri="<http://java.sun.com/jsp/jstl/core>" %> <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>boardViewResult.jsp</title> <style type="text/css"> table, th, td { border: 1px solid black; border-collapse: collapse; } td { text-align: center; } .button-area{ text-align: center; } </style> </head> <body> <br><br> <h1>글보기페이지</h1> <br> <table> <tr> <td colspan="3">${subject}</td> <!-- 제목 --> </tr> <tr> <td width="200px">글번호 : ${seq}</td> <td width="200px">작성자 : ${name}</td> <td width="200px">조회수 : ${hit}</td> </tr> <tr> <td colspan="3" height="300px" valign="top"> <pre>${content}</pre> <!-- 내용 --> </td> </tr> </table> <br><br> <div class="button-area"> <button onclick="location.href='../board/boardList.jsp?pg=${pg}'">글 목록</button> <c:if test="${ memberId == id }"> <button onclick="location.href='../board/boardModifyReady.jsp?pg=${pg}&seq=${seq}'">글 수정</button> <button onclick="location.href='../board/boardDelete.jsp?seq=${seq}'">글 삭제</button> </c:if> </div> </body> </html>