sboard/modify.jsp
페이지 정보
본문
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ include file="/WEB-INF/views/include/header.jsp" %>
<center>
<h3>MODIFY PAGE</h3>
<form method="post" enctype="multipart/form-data">
<input type="hidden" name="bno" value="${boardVO.bno}">
<input type="hidden" name="file01" value="${boardVO.file01}">
<input type="hidden" name="file02" value="${boardVO.file02}">
<input type="hidden" name="file03" value="${boardVO.file03}">
<input type="hidden" name="file01_thum" value="${boardVO.file01_thum}">
<table>
<tr>
<td>제목</td>
<td><input name="title" value="${boardVO.title}"></td>
</tr>
<tr>
<td>내용</td>
<td><textarea name="content" rows="3">${boardVO.content}</textarea></td>
</tr>
<tr>
<td>작성자</td>
<td><input name="writer" value="${boardVO.writer}" readonly></td>
</tr>
<tr>
<td rowspan=3>첨부</td>
<td><input type="file" name='file'><font color=red>${boardVO.file01}</font></td>
</tr>
<tr>
<td><input type="file" name='file'><font color=red>${boardVO.file02}</font></td>
</tr>
<tr>
<td><input type="file" name='file'><font color=red>${boardVO.file03}</font></td>
</tr>
<tr>
<td></td>
<td><button type="submit">Submit</button></td>
</tr>
</table>
</form>
</center>
<%@ include file="/WEB-INF/views/include/footer.jsp" %>
- 이전글SearchBoardController.java 24.08.01
- 다음글● sboard - 목록 , 조회 ( 첨부 표현 ) - 냉무 24.08.01
댓글목록
등록된 댓글이 없습니다.