Contact Us
Contact Us
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class ContactFormHandler extends HttpServlet {
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
// Retrieve form data
String name = request.getParameter("name");
String email = request.getParameter("email");
String message = request.getParameter("message");
// Perform further actions (e.g., send email) with the form data
// Redirect back to the contact us page
response.sendRedirect("index.html");
}
}
0 Comments