-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.jsp
92 lines (81 loc) · 1.92 KB
/
Main.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
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
82
83
84
85
86
87
88
89
90
91
92
<%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR"%>
<%@ page language="java" import = "java.sql.*" %>
<!DOCTYPE html>
<html>
<style>
table.type11 {
border-collapse: separate;
border-spacing: 1px;
text-align: center;
line-height: 1.5;
margin: 20px 10px;
}
table.type11 th {
width: 155px;
padding: 10px;
font-weight: bold;
vertical-align: top;
color: #fff;
background: #ce4869 ;
}
table.type11 td {
width: 155px;
padding: 10px;
vertical-align: top;
border-bottom: 1px solid #ccc;
background: #eee;
}
.button {
background-color: blue;
border: none;
color: white;
padding: 15px 30px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
.b {background:red;}
.c {background:green;}
</style>
<head>
<meta charset="EUC-KR">
<title>통신사 전산관리 프로그램</title>
</head>
<body>
<span
style="
font-style: italic ;
font-weight: bold;
font-size: 1.5em;
line-height: 1.0em;
color: navy;
font-family: arial;
">
통신사 전산관리 프로그램
</span>
<Form>
<input type="button" class = "button c" value = '접수현황' id = "getS">
<input type="button" class = "button c" value = '상담사' id = "getM">
<input type="button" class = "button c" value = '상품목록' id = "getG">
<input type="button" class = "button c" value = '고객정보' id = "getU">
</Form>
<script type = "text/javascript">
document.getElementById("getS").onclick = function(){
location.href = "http://localhost:8090/WebTest/ShowStatus.jsp";
}
document.getElementById("getM").onclick = function(){
location.href = "http://localhost:8090/WebTest/ShowManager.jsp";
}
document.getElementById("getG").onclick = function(){
location.href = "http://localhost:8090/WebTest/ShowGoods.jsp";
}
document.getElementById("getU").onclick = function(){
location.href = "http://localhost:8090/WebTest/ShowUsers.jsp";
}
</script>
</body>
</html>