-
Notifications
You must be signed in to change notification settings - Fork 260
Expand file tree
/
Copy pathaddContactus.java
More file actions
93 lines (52 loc) · 1.75 KB
/
addContactus.java
File metadata and controls
93 lines (52 loc) · 1.75 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
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.dao.DAO3;
import com.dao.DAO5;
import com.entity.cart;
import com.entity.contactus;
import com.entity.customer;
import com.entity.usermaster;
import com.dao.DAO;
@MultipartConfig
@WebServlet("/addContactus")
public class addContactus extends HttpServlet {
private static final long serialVersionUID = 1L;
public addContactus() {
super();
}
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
}
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
String Name=request.getParameter("Name");
String Email_Id=request.getParameter("Email_Id");
String Contact_No=request.getParameter("Contact_No");
String Message=request.getParameter("Message");
contactus c = new contactus();
c.setName(Name);
c.setEmail_Id(Email_Id);
c.setContact_No(Integer.parseInt(Contact_No));
c.setMessage(Message);
try{
DAO5 dao = new DAO5(DBConnect.getConn());
if(dao.addContactus(c) > 0)
{
response.sendRedirect("cupass.jsp");
}
else
response.sendRedirect("cufail.jsp");
}catch(Exception ex){
System.out.println(ex.getMessage());
}
}
}