Ver Mensaje Individual
  #4 (permalink)  
Antiguo 22/12/2004, 16:05
daneelolivaw
 
Fecha de Ingreso: diciembre-2004
Mensajes: 3
Antigüedad: 19 años, 4 meses
Puntos: 0
Ok, lo que sucede es que no he podido configrar el archivo web.xml, pues no se como hacerlo, y es correcto estoy usando jstl, en resumen la pagina que estoy tratando de levantar es esta :

----------------------------------------------------
<%-- use the 'taglib' directive to make the JSTL 1.0 core tags available --%>
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
<%-- use the 'jsp:useBean' standard action to make the Date object available in page scope --%>
<jsp:useBean id="date" class="java.util.Date" />
<html>
<head><title>First JSP</title></head>
<body>
<h2>Here is today's date</h2>
<c:out value="Date: ${date}" />
</body>
</html>
-------------------------------------------------------------

es el primer ejemplo del libro de OReilly (ava Servlet & Jsp Cookbook )

de nuevo gracias a todos