문제
게시판을 수정할 때 이젠 게시글 데이터를 가지고 와야 하는데 빈 화면만 나타날 때
해결
1. 수정 버튼 클릭 시 수정 화면(updateAction.jsp)로 이동하게 하기
<form method="post" action="updateAction.jsp?bbsID=<%=bbsID%>">
2. 이전 데이터 가져오는 get 함수 입력
<tbody>
<tr>
<td><input type="text" class="form-control" placeholder="글 제목" name="bbsTitle" maxlength="50" value="<%=bbs.getBbsTitle()%>"></td>
</tr>
<tr>
<td><textarea class="form-control" placeholder="글 내용" name="bbsContent" maxlength="2048" style="height: 350px;"><%=bbs.getBbsContent()%></textarea></td>
</tr>
</tbody>
value="<%=bbs.getBbsTitle()
<%=bbs.getBbsContent()%>
'ERROR' 카테고리의 다른 글
[JSP] 드랍다운 버튼 디자인 구현 에러 (0) | 2022.07.10 |
---|---|
The nested type MemberBean cannot hide an enclosing type (0) | 2022.07.10 |
[JSP]cannot be resolved to a type (0) | 2022.07.09 |
[JSP]데이터베이스 실행 안되는 에러 (0) | 2022.07.05 |
[JSP]The method is undefined for the type.. (0) | 2022.07.05 |