From: "Donald E. Vandenbeld" <[EMAIL PROTECTED]>
> Second, I can't seem to forward from the servlet to a jsp! I get a
> clickable link printed to the screen instead of the redirection taking
> place. To redirect I'm using:
> response.sendRedirect (response.encodeRedirectURL ("/announcement.jsp"));
Change it to the following :
RequestDispatcher rd =
getServletContext().getRequestDispatcher("/announcement.jsp");
rd.forward(request, response);
This reflects the proper way of dispatching according the more recent
Servlet specs.
Hope that helps,
Brien Voorhees