source: nutchez-0.1/tomcat/webapps/examples/jsp/cal/cal2.jsp.html @ 66

Last change on this file since 66 was 66, checked in by waue, 15 years ago

NutchEz - an easy way to nutch

File size: 1.6 KB
Line 
1<html><body><pre>
2&lt;HTML>
3&lt;!--
4 Licensed to the Apache Software Foundation (ASF) under one or more
5  contributor license agreements.  See the NOTICE file distributed with
6  this work for additional information regarding copyright ownership.
7  The ASF licenses this file to You under the Apache License, Version 2.0
8  (the "License"); you may not use this file except in compliance with
9  the License.  You may obtain a copy of the License at
10
11      http://www.apache.org/licenses/LICENSE-2.0
12
13  Unless required by applicable law or agreed to in writing, software
14  distributed under the License is distributed on an "AS IS" BASIS,
15  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  See the License for the specific language governing permissions and
17  limitations under the License.
18-->
19
20&lt;HEAD>&lt;TITLE>
21  Calendar: A JSP APPLICATION
22&lt;/TITLE>&lt;/HEAD>
23
24
25&lt;BODY BGCOLOR="white">
26&lt;jsp:useBean id="table" scope="session" class="cal.TableBean" />
27
28&lt;%
29  String time = request.getParameter ("time");
30%>
31
32&lt;FONT SIZE=5> Please add the following event:
33&lt;BR> &lt;h3> Date &lt;%= table.getDate() %>
34&lt;BR> Time &lt;%= util.HTMLFilter.filter(time) %> &lt;/h3>
35&lt;/FONT>
36&lt;FORM METHOD=POST ACTION=cal1.jsp>
37&lt;BR>
38&lt;BR> &lt;INPUT NAME="date" TYPE=HIDDEN VALUE="current">
39&lt;BR> &lt;INPUT NAME="time" TYPE=HIDDEN VALUE=&lt;%= util.HTMLFilter.filter(time) %>
40&lt;BR> &lt;h2> Description of the event &lt;INPUT NAME="description" TYPE=TEXT SIZE=20> &lt;/h2>
41&lt;BR> &lt;INPUT TYPE=SUBMIT VALUE="submit">
42&lt;/FORM>
43
44&lt;/BODY>
45&lt;/HTML>
46
47</pre></body></html>
Note: See TracBrowser for help on using the repository browser.