Hi I`m new to J2EE and I am programming servlets.
I would like to know how can I send the client to another web page when I get the parameter Foo on a doPost method on a HTTPServlet?
doPost (...)
{
if (request.getParameter("Foo")!=null)
{
// Send the client to the Foo web page.
}
}
Thanks,
Komyg
I would like to know how can I send the client to another web page when I get the parameter Foo on a doPost method on a HTTPServlet?
doPost (...)
{
if (request.getParameter("Foo")!=null)
{
// Send the client to the Foo web page.
}
}
Thanks,
Komyg