Page 213 - 3-1
P. 213

<%@page import="MDP.ToolDAO"%>
              <%@page import="MDP.ToolVo"%>
              <%@ page language="java" contentType="text/html; charset=UTF-8"
                  pageEncoding="UTF-8"%>


              <!DOCTYPE html>

              <html>
              <head>
              <meta charset="UTF-8">
              <title> 부품에 대한 상세설명</title>
              <style type="text/css">
                      table{
                              width:300px;
                      }
                      table, tr, th, td{
                              border:1px solid black;
                              border-collapse:collapse;
                      }
                      th {
                              padding:2px;
                              color:black;
                      }
                      #toolname, #count{

                              width:10%;
                              text-align:center;
                      }
              </style>


              </head>
              <body>


                      <%
                              String b = request.getParameter("bno");
                              ToolDAO dao = new ToolDAO();
                              ToolVo vo = new ToolVo();
                              if(b!=null){
                                      int bno = Integer.parseInt(b);

                                      //out.println(bno);




                                                         - 213 -
   208   209   210   211   212   213   214   215   216   217   218