<%-- Copyright 2004 Sun Microsystems, Inc. All rights reserved. SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. --%> <%@ taglib prefix="fmt" uri="http://java.sun.com/jstl/fmt" %> <fmt:setBundle basename="LocalStrings"/> <HTML> <!-- Copyright (c) 1999 The Apache Software Foundation. All rights reserved. --> <HEAD><TITLE> <fmt:message key="cal2.jsp.title"/> </TITLE></HEAD> <BODY BGCOLOR="white"> <jsp:useBean id="table" scope="session" class="samples.webapps.simple.beans.cal.TableBean" /> <% String time = request.getParameter ("time"); %> <FONT SIZE=5><fmt:message key="cal2.jsp.addevent"/> <BR> <h3> Date <%= table.getDate() %> <BR> <fmt:message key="cal2.jsp.time"/> <%= time %> </h3> </FONT> <FORM METHOD=POST ACTION=cal1.jsp> <BR> <BR> <INPUT NAME="date" TYPE=HIDDEN VALUE="current"> <BR> <INPUT NAME="time" TYPE=HIDDEN VALUE=<%= time %> <BR> <h2> <fmt:message key="cal2.jsp.description"/> <INPUT NAME="description" TYPE=TEXT SIZE=20> </h2> <BR> <INPUT TYPE=SUBMIT VALUE="submit"> </FORM> </BODY> </HTML>