-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMasterPage_1_With_BS4.Master
More file actions
95 lines (77 loc) · 4.99 KB
/
MasterPage_1_With_BS4.Master
File metadata and controls
95 lines (77 loc) · 4.99 KB
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
93
94
95
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="MasterPage_1_With_BS4.Master.cs" Inherits="ContabSysNetWeb.MasterPage_1_With_BS4" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>
<!doctype html>
<html lang="en">
<head runat="server">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Untitled Page</title>
<link href="general.css" rel="stylesheet" type="text/css" />
<link href="Styles/ajaxControlToolkit.css" rel="stylesheet" />
<link href="Styles/GridViewStyles/styles2.css" rel="stylesheet" />
<link href="radcalendar.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="Scripts/jquery/jquery-ui-1.10.4.min.css" />
<link rel="stylesheet" type="text/css" href="Scripts/bootstrap-4.0/css/bootstrap.min.css" />
</head>
<body>
<form id="form1" runat="server" enctype="multipart/form-data">
<%--<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>--%>
<asp:ScriptManager ID="ToolkitScriptManager1" runat="server">
<Scripts>
</Scripts>
<Services>
<asp:ServiceReference Path="~/MostrarProgreso_1.asmx" />
</Services>
</asp:ScriptManager>
<div id="header" style="border-bottom-style: solid; border-bottom: 1px #36c; background-color: #d5ddf3; padding-left: 10px; padding-right: 10px; ">
<table style="width: 100%;">
<tr>
<td style="padding: 5px; vertical-align: central; width:15%; ">
<span class="FontMediumBoldNavy" style="font-style: italic; ">ContabSysNet</span><br />
<span id="AppName_Span" runat="server" class="FontMediumBoldNavy">App name</span>
</td>
<td style="width:70%; vertical-align: central; padding-top:5px; text-align:center; ">
<h4 id="PageTitle_TableCell" runat="server" style="margin: 0">Page Title</h4>
<span id="PageSubTitle_Span" runat="server" class="FontMediumBoldNavy"></span>
</td>
<td style="width:5%; text-align:right; ">
<asp:UpdateProgress ID="UpdateProgress1" runat="server" DisplayAfter="0" DynamicLayout="True">
<ProgressTemplate>
<span style="margin-right: 15px;">
<img runat="server" alt="...loading" src="Pictures/img/circle-ball-dark-antialiased.gif" /></span>
</ProgressTemplate>
</asp:UpdateProgress>
</td>
<td style="text-align: right; padding-top: 5px; width: 10%;">
<a id="A1" href="~/Main/Home" runat="server">
<img id="Img2" alt="home" runat="server" src="Pictures/house_20x20.png" style="margin-right: 10px;
border: none;" /></a>
<a href="javascript:javascript:history.go(-1)">
<img id="Img3" alt="back" runat="server" src="Pictures/arrow_left_20x20.png" style="margin-right: 10px;
border: none;" /></a>
<a id="Help_HyperLink" href="#" runat="server">
<img id="Img1" alt="home" runat="server" src="Pictures/help_20x20.png" style="border: none;" /></a>
</td>
</tr>
</table>
</div>
<br />
<div style="min-height: 30%;">
<asp:ContentPlaceHolder ID="PanelCentral_ContentPlaceHolder" runat="server">
</asp:ContentPlaceHolder>
</div>
<div style="margin: 0px; background-color: #d5ddf3; border-bottom-style: solid; border-bottom-width: 1px; border-bottom-color: #36c">
<asp:ContentPlaceHolder ID="Footer_ContentPlaceHolder" runat="server">
</asp:ContentPlaceHolder>
</div>
</form>
<!-- (bootstrap) Optional JavaScript -->
<!-- (bootstrap) jQuery first, then Popper.js, then Bootstrap JS -->
<script type="text/javascript" src="<%= this.Page.ResolveUrl("~/Scripts/jquery/jquery-1.10.2.js") %>"></script>
<script type="text/javascript" src="<%= this.Page.ResolveUrl("~/Scripts/jquery/jquery-ui-1.10.4.min.js") %>"></script>
<%--bootstrap 4.0 CSS--%>
<script type="text/javascript" src="<%= this.Page.ResolveUrl("~/Scripts/popper/popper.min.js") %>"></script>
<script type="text/javascript" src="<%= this.Page.ResolveUrl("~/Scripts/bootstrap-4.0/js/bootstrap.min.js") %>"></script>
</body>
</html>