-
Notifications
You must be signed in to change notification settings - Fork 260
Expand file tree
/
Copy pathaddcustomer.java
More file actions
109 lines (63 loc) · 2.22 KB
/
addcustomer.java
File metadata and controls
109 lines (63 loc) · 2.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
package com.servlet;
import java.io.IOException;
import java.nio.file.Path;
import javax.servlet.ServletException;
import javax.servlet.annotation.MultipartConfig;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.Cookie;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import com.conn.DBConnect;
import com.dao.DAO;
import com.dao.DAO2;
import com.entity.customer;
import com.dao.DAO;
@MultipartConfig
@WebServlet("/addcustomer")
public class addcustomer extends HttpServlet {
private static final long serialVersionUID = 1L;
public addcustomer() {
super();
}
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
}
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
String UsernameD = new String(request.getParameter("Username"));
String Username = UsernameD.trim();
String PasswordD = new String(request.getParameter("Password"));
String Password = PasswordD.trim();
String Email_IdD = new String(request.getParameter("Email_Id"));
String Email_Id = Email_IdD.trim();
String Contact_NoD = new String(request.getParameter("Contact_No"));
String Contact_No = Contact_NoD.trim();
String Total6 = request.getParameter("Total");
String CusName6 = request.getParameter("CusName");
customer ct = new customer();
ct.setName(Username);
ct.setPassword(Password);
ct.setEmail_Id(Email_Id);
ct.setContact_No(Integer.parseInt(Contact_No));
try{
DAO2 dao =new DAO2(DBConnect.getConn());
if(dao.checkcust2(ct) == true)
{
response.sendRedirect("fail.jsp");
}
else
{
if(dao.addcustomer(ct) > 0)
{
Cookie creg = new Cookie("creg","creg");
creg.setMaxAge(10);
response.addCookie(creg);
response.sendRedirect("customerlogin.jsp?Total="+Total6+"&CusName="+CusName6+"");
}
else
response.sendRedirect("fail.jsp");
}
}catch (Exception ex){
System.out.println(ex);
}
}
}