hi, sorry... my english is so bad...
i'm using a contentpane in a tabcontainer with a href='servletname'... servletname is my servlet...
that's ok... but the problem is when i try to send from my servlet to another page in the contentpane...
that is my way to go at the servlet... in the servlet:
if(request.getParameter("solicit").equalsIgnoreCase("califactual")){
ArrayList gruposcalificacion = new ArrayList();
Curso curso = (Curso)misesion.getAttribute("incurso");
gruposcalificacion = curso.getGruposCalificacion();
request.setAttribute("gruposcalificacion", gruposcalificacion);
RequestDispatcher rd = request.getRequestDispatcher("/califactual.jsp");
rd.forward(request, response);
}
i want the forward in the contentpane not all page... it's posible ????
Thanks... sorry but i speak spanish !!! :P
