-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIndex.jsp
43 lines (39 loc) · 1.44 KB
/
Index.jsp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<%@ page language="java"
contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"
import="com.mysql.jdbc.*"
import="java.sql.ResultSet"
%>
<jsp:useBean id="dbConn" scope="request" class="mypackage.DBFunctions"/>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>FileTransfer</title>
<link rel="stylesheet" type="text/css" media="all" href="myStyle.css" />
</head>
<script src="js/mscript.js">
</script>
<body onload="sban()">
<div class="upload_form_cont">
<form id="upload_form" method="post">
<div>
<div><input type="file" name="transfer_file" id="transfer_file" onchange="fileSelected();" />
</div>
</div>
<div>
<input type="button" value="Μεταφόρτωση Αρχείου" onclick="startUploading()" />
</div>
<div id="progress_info">
<div id="progress"></div>
<div id="progress_percent"> </div>
<div class="clear_both"></div>
<div id="upload_response"></div>
</div>
</form>
</div>
<p id="message">
</p>
<script src="./js/script.js" charset="UTF-8"></script>
</body>
</html>