-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsite.aspx
More file actions
81 lines (54 loc) · 984 Bytes
/
Copy pathsite.aspx
File metadata and controls
81 lines (54 loc) · 984 Bytes
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="site.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>printshop</title>
<style>
body{
background:#000000;
color:rgb(255, 255, 255);
font-family:Arial;
}
.container{
background:#1e1e1e;
width:400px;
margin:auto;
padding:30px;
border-radius:10px;
box-shadow:0px 0px 20px rgb(85, 255, 0);
text-align:center;
}
input[type=file]{
background:#333;
color:white;
padding:10px;
margin:20px;
border-radius:5px;
border:none;
}
</style>
</head>
<body>
<div class="container">
<h2>Upload Box</h2>
<form runat="server" method="post">
<asp:FileUpload ID="FileUpload1" runat="server" />
<br>
<asp:Button
ID="Button1"
runat="server"
Text="send"
OnClick="UploadFile"
/>
<asp:Label
ID="Label1"
runat="server"
Text=""
/>
<input type="reset" text="reset"/><br><br>
</form>
</div>
</body>
</html>