Project

General

Profile

1
<html> 
2

    
3
<head>
4

    
5
<title>EML File Upload</title>
6

    
7
</head>
8

    
9
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
10

    
11
<br><center>
12

    
13
<h3><font color="#132B76"><b>File Upload</b></font></h3>
14

    
15
<form name="myform" method="post" enctype="multipart/form-data" 
16
	action="servlet/Upload999">
17

    
18
<table bgcolor="#f6f6f6" width=700 border="0" cellpadding="4">
19
<tr>
20
<td width="150" bgcolor="#4682b4"><p align="center">
21
<font color="white">Docid</font>
22

    
23
</td>
24

    
25
<td><p><input type="text" name="docid" maxlength="60" size="40">
26

    
27
</td>
28

    
29
</tr>
30

    
31

    
32
<tr>
33
<td width="150" bgcolor="#4682b4"><p align="center">
34
<font color="white">Upload File</font>
35

    
36
</td>
37

    
38
<td><p><input type="file" name="eml_filename" maxlength="60" size="40">
39

    
40
</td>
41

    
42
</tr>
43

    
44
</table>
45
<br>
46
<p>
47
<input type="submit" value="Upload">
48

    
49
<input type="reset" value="Reset">
50

    
51
</form>
52

    
53
</body>
54

    
(2-2/2)