-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSMS.aspx
51 lines (43 loc) · 1.8 KB
/
SMS.aspx
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
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="SMS.aspx.cs" Inherits="SMS" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="ko" class="no-js">
<head runat="server">
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>모바일SIS</title>
<link rel="stylesheet" type="text/css" href="css/normalize.css" />
<link rel="stylesheet" type="text/css" href="css/demo.css" />
<link rel="stylesheet" type="text/css" href="css/icons.css" />
<link rel="stylesheet" type="text/css" href="css/component.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<script src="js/modernizr.custom.js"></script>
<script src="js/classie.js"></script>
<script src="js/mlpushmenu.js"></script>
<script src="js/jquery.min.js"></script>
<script>
$(document).ready(function () {
$('#menu').load('Menu.aspx');
});
</script>
</head>
<body>
<form runat="server" id="form1">
<div class="container">
<div id="mp-pusher" class="mp-pusher">
<span id="menu"></span>
<a href="#" id="trigger" class="header">
<asp:Label runat="server" ID="pageTitle" />
<span class="icon icon-arrow-right-3" />
<span class="icon-menu" />
</a>
<div class="contents">
<asp:Label runat="server" ID="ErrorMsg" />
<iframe runat="server" id="iframe" />
</div>
</div>
</div>
</form>
</body>
</html>