Page 219 - 3-1
P. 219
int bno = Integer.parseInt(b);
//out.println(bno);
vo = dao.getData(bno);
}else{
response.sendRedirect("list.jsp");
}
%>
<form action="modifyOK.jsp">
<input type="hidden" name="bno" value="<%=vo.getBno() %>"/>
<div id = "container">
<p><h3> 부품변경</h3></p>
</div>
<div id="toolname">
<p> 공구명 :
<input type = "text" name="toolname" id=""
value="<%=vo.getToolname() %>"/></p>
</div>
<div id="count">
<p> 갯수 :
<input type = "text" name="count" id=""
value="<%=vo.getCount() %>"/>
</p>
</div>
<div id="button">
<a href="list.jsp">
<input type="button" value=" 목록보기" /></a>
<input type="submit" value=" 변경완료" />
</div>
</form>
</body>
</html>
- 219 -