-
Notifications
You must be signed in to change notification settings - Fork 50
/
error.asp
68 lines (60 loc) · 1.32 KB
/
error.asp
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<meta name="robots" content="noindex,nofollow">
<title>[<% ident(); %>] Error</title>
<style>
body {
font-family: 'Verdana';
font-size: 13px;
}
.container {
width: 700px;
margin: 50px auto;
}
h2 {
font-size: 20px;
}
.btn {
font-family: Verdana;
display: inline-block;
text-align: center;
cursor: pointer;
background-image: none;
padding: 8px 20px;
margin: 0;
font-size: 11px;
font-weight: bold !important;
line-height: 1.42857143;
color: #fff !important;
background: #69baf2;
transition: 0.1s ease-out;
border-radius: 4px;
-webkit-border-radius: 4px;
border: 0;
border-bottom: 2px solid #4297d0;
}
.btn:hover {
background: #77c1f6;
}
.btn:active, .btn:focus {
transition: none;
margin-top: 2px;
border-width: 0;
}
</style>
</head>
<body>
<div class="container" style="text-align: center;">
<div class="row">
<h2>Somthing went wrong...</h2>
<p><script type="text/javascript">
//<% resmsg("Unknown error"); %>
document.write(resmsg);
</script></p>
<p><a class="btn btn-primary" onclick="history.go(-1)">Go Back</a></p>
</div>
</div>
</body>
</html>