Current File : /home/obabain/public_html/abc/meltingprocess_view.jsp
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
     <%@ include file="Connection.jsp"%>

<%
  Statement st=con.createStatement();
  ResultSet rs=null;
  String id=request.getParameter("id");
%>

<%@include file="master.jsp"%>

<style type="text/css">
.highlight-error {
  border-color: red;
}
</style>

 <script src='https://code.jquery.com/jquery-3.3.1.js'></script>   
 <script src='https://cdn.datatables.net/1.10.19/js/jquery.dataTables.min.js'></script> 
 <script src="https://cdn.datatables.net/1.10.19/js/dataTables.bootstrap4.min.js" charset="utf-8"></script>  
 <link rel="stylesheet" href="https://cdn.datatables.net/1.10.19/css/dataTables.bootstrap4.min.css">  
 
 
<body>

<form method="post" id="contact" name="form1">
<section id="main">
<div class="container">
 <div class="row" style="width:110%">
    <div class="col-md-10">
       <div class="panel panel-default" >
       <div class="panel-heading main-color-bg">
        <h3 class="panel-title">Melting Process View:</h3>
        <a style="background:;margin-top:-23px;margin-right:30px;" class="btn btn-danger pull-right" href="meltingprocess.jsp">Add New</a>
        </div>
            
       <div class="panel-body">
          
           
<script type="text/javascript">
$(document).ready(function() {
    $('#example').DataTable();
} );
</script>    
   <div style="overflow-x:auto;">     
 <table class="table table-striped table-bordered" id="example">
 <thead>              
<tr class="success"> 
 <th>Sl No.</th>
 <th>Heat No</th>
 <th>Part Name</th>
 <th>Foundry Return</th>
 <th>Rejection Scrap</th>
 <th>Delete</th>
</tr>
</thead>        
<tbody>     
       <%   
       int i=0;
       rs=st.executeQuery("select * from mech_property2");
       while(rs.next())
       {
    	  i+=1;
       %>  
       <tr style="height:2px;">
     
       <td>  <b><%=i%> </b> </td>
       
       <td><%=rs.getString("heat_no")%></a></td>
     
      <td> <%=rs.getString("part_name")%></td>
      
      <td> <%=rs.getString("foundry_return")%> </td> 
      <td> <%=rs.getString("rejection_scarp")%> </td> 
      <td  align="left"><a href="meltingprocess_delete.jsp?Id=<%=rs.getString("furnaceid")%>" onclick = "if (! confirm('Continue?')) { return false; }"><li class="glyphicon glyphicon-trash"></li></a></td>
       
       </tr>    
     
       <%}%>
       </tbody>
       </table>
     </div>  


       
      <div class="modal-footer" id="contact_submit">     
        <div class="row">        
          <!-- <a class="btn btn-default" href="#"  style="margin-right:10px">Reset</a> -->
          <!--  <button type="submit" style="background:" class="" ></button>-->
       </div>
      </div>
      
 </div>
    </div>
  </div>
</div>
</div> 
</section>



<%@include file="footer.jsp"%>
</form>
<script type="text/javascript">
function goBack() {
    window.history.back();
   
};
</script>


</body>
</html>