Current File : /home/obabain/public_html/abc/foundryitemDA.jsp |
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ include file="Connection.jsp" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta charset="ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<%
try
{
Statement st=con.createStatement();
String partname=request.getParameter("partname");
String partno=request.getParameter("partno");
if(partno.equals("") || partname.equals(""))
{
response.sendRedirect("Foundryitems.jsp");
}
else
{
int i=st.executeUpdate("insert into foundry_items values(0,'"+partname+"','"+partno+"',now())");
response.sendRedirect("viewfoundryitems.jsp");
}
}
catch(Exception el){}
%>
</body>
</html>