forked from Coded/SIPRP
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
424 B
27 lines
424 B
/*
|
|
* RequestServlet.java
|
|
*
|
|
* Created on 4 de Março de 2005, 18:19
|
|
*/
|
|
|
|
package siprp.pagina;
|
|
|
|
import java.io.*;
|
|
|
|
import javax.servlet.*;
|
|
import javax.servlet.http.*;
|
|
/**
|
|
*
|
|
* @author psantos
|
|
*/
|
|
public class RequestServlet extends HttpServlet
|
|
{
|
|
public void doPost( HttpServletRequest req, HttpServletResponse res )
|
|
throws IOException
|
|
{
|
|
// recebe info de contacto
|
|
// manda mail
|
|
// mostra pagina de sucesso
|
|
}
|
|
}
|